123456789101112 |
- package server
- import (
- "xiaoniaokuaiyan.com/xiaoniao/search"
- )
- type SearchService interface {
- Query(param *search.QueryParam, uid int) (interface{}, error)
- GetTip(text string, cityId int, isZFB bool) (interface{}, error)
- GetTopKeyword(cityId int, sn int) (interface{}, error)
- GetUserKeyword(uid int, sn int) (interface{}, error)
- }
|