data.go 319 B

12345678910111213141516
  1. package coupon
  2. const dateFormat = "2006-01-02"
  3. type req_base struct {
  4. BeginTime string // 开始时间
  5. EndTime string // 截止时间
  6. }
  7. // 统计信息
  8. type statInfo struct {
  9. DateFlag string // 日期标识
  10. Remark string // 备注
  11. CouponCount int // 红包券数
  12. UserCount int // 用户数
  13. }