相关条件的统计
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B

  1. package md
  2. type DataDetail struct {
  3. //TaskIds []int `json:"task_ids" binding:"required"`
  4. AgentType string `json:"level"`
  5. Comment string `json:"remark"` // 备注
  6. MasterId string `json:"master_id"`
  7. Uid string `json:"uid"`
  8. IsChangeTime string `json:"is_change_time"`
  9. }
  10. type BuyCouponLvRewardList struct {
  11. Id string `json:"id"`
  12. Name string `json:"name"`
  13. Reward []BuyCouponLvReward `json:"reward"`
  14. }
  15. type BuyCouponLvReward struct {
  16. Id string `json:"id"`
  17. Name string `json:"name"`
  18. Amount string `json:"amount"`
  19. }