|
1234567891011121314151617181920 |
- package md
-
- type DataDetail struct {
- //TaskIds []int `json:"task_ids" binding:"required"`
- AgentType string `json:"level"`
- Comment string `json:"remark"` // 备注
- MasterId string `json:"master_id"`
- Uid string `json:"uid"`
- IsChangeTime string `json:"is_change_time"`
- }
- type BuyCouponLvRewardList struct {
- Id string `json:"id"`
- Name string `json:"name"`
- Reward []BuyCouponLvReward `json:"reward"`
- }
- type BuyCouponLvReward struct {
- Id string `json:"id"`
- Name string `json:"name"`
- Amount string `json:"amount"`
- }
|