|
123456789101112131415161718192021222324252627282930 |
- package md
-
- type CouponCheck struct {
- CouponAmount string `json:"coupon_amount"`
- Uid string `json:"uid"`
- PvdType string `json:"pvd_type"`
- Pvd string `json:"pvd"`
- Gid string `json:"gid"`
- CreateAt string `json:"create_at"`
- CheckAmount string `json:"check_amount"`
- IsMustReduce string `json:"is_must_reduce"`
- IsChangeState string `json:"is_change_state"`
- GoodsTitle string `json:"goods_title"`
- Oid string `json:"oid"`
- }
-
- type CouponCheckRequest struct {
- CouponAmount string `json:"coupon_amount"`
- Uid string `json:"uid"`
- PvdType string `json:"pvd_type"`
- Type string `json:"type"`
- Pvd string `json:"pvd"`
- Gid string `json:"gid"`
- CheckAmount string `json:"check_amount"`
- IsMustReduce string `json:"is_must_reduce"`
- CreateAt string `json:"create_at"`
- IsChangeState string `json:"is_change_state"`
- GoodsTitle string `json:"goods_title"`
- Oid string `json:"oid"`
- }
|