user_online.go 251 B

12345678910
  1. package user_online
  2. // Fill with you ideas below.
  3. //列表搜索参数
  4. type ReqListSearch struct {
  5. Username string `p:"username"`
  6. Ip string `p:"ip"`
  7. PageNum int `p:"page"` //当前页码
  8. PageSize int `p:"pageSize"` //每页数
  9. }