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.
|
- package md
-
- type BuyPackageRecordsRequest struct {
- Page int `json:"page"`
- Limit int `json:"limit"`
- }
- type BuyPackageRecordsResponse struct {
- Id int `json:"id"`
- OrdNo string `json:"ord_no"`
- TradeNo string `json:"trade_no"`
- PackageId int `json:"package_id"`
- Uid int `json:"uid"`
- Amount string `json:"amount"`
- State int `json:"state"`
- PayChannel int `json:"pay_channel"`
- Months int `json:"months"`
- PackageName string `json:"package_name"`
- CreateAt string `json:"create_at" `
- UpdateAt string `json:"update_at" `
- }
|