| 1234567891011121314151617181920 |
- package constants
- type SearchType int32
- // 1、按照用户id查询2、按照用户推文权限搜索3、搜索全文
- const (
- SearchByUserID SearchType = iota + 1
- SearchByVisit
- SearchByContent
- )
- type EsSortType int32
- // 1-按照用户热度排序2-按照用户创建时间排序3-按照用户最后回复时间排序4-用户置顶排序
- const (
- SortByUserScore EsSortType = iota + 1
- SortByUserCreateTime
- SortByUserLastReply
- SortByUserTop
- )
|