data.go 848 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package report
  2. type req_base struct {
  3. BeginTime string
  4. EndTime string
  5. }
  6. type info struct {
  7. Rid int // 标识
  8. DateFlag string // 日期
  9. ItemType int // 项类型(1=计数 2=计价)
  10. ItemName string // 项名称
  11. ItemValue string // 项值
  12. ItemTag int // 项标签
  13. }
  14. type timePeriodInfo struct {
  15. DateFlag string
  16. TimePeriod string // 时段
  17. UserCount int // 人数
  18. }
  19. type req_timePeriodUser struct {
  20. TimePeriod string // 时段
  21. BeginTime string // 开始时间
  22. EndTime string // 截止时间
  23. PageIndex int // 页索引
  24. PageSize int // 页大小
  25. }
  26. type timePeriodUser struct {
  27. Rid int // 序号
  28. UserID int // 用户id
  29. NickName string // 昵称
  30. RegTime string // 注册时间
  31. LoginTime string // 登录时间
  32. Seconds int // 时长
  33. IpAddress string // ip地址
  34. }