|
1234567891011121314151617181920 |
- package md
-
- type GetChargeMoney struct {
- PlatformMoney string `json:"platform_money"`
- UserMoney string `json:"user_money"`
- PhoneChargeDiscount string `json:"phone_charge_discount"`
- PhoneChargeAddPrice string `json:"phone_charge_add_price"`
- PhoneChargePriceList string `json:"phone_charge_price_list"`
- Goods []PhoneGoodsData `json:"goods"`
- }
- type PhoneGoodsData struct {
- Id string `json:"id"`
- Capacity string `json:"capacity"`
- Price string `json:"price"`
- }
- type PhoneChargeData struct {
- Phone string `json:"phone"`
- PhoneInfo string `json:"phone_info"`
- List []*PrivilegeCardGoodsNew `json:"list"`
- }
|