智莺生活mysql模型库
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
595 B

  1. package md
  2. type BuyPackageRecordsRequest struct {
  3. Page int `json:"page"`
  4. Limit int `json:"limit"`
  5. }
  6. type BuyPackageRecordsResponse struct {
  7. Id int `json:"id"`
  8. OrdNo string `json:"ord_no"`
  9. TradeNo string `json:"trade_no"`
  10. PackageId int `json:"package_id"`
  11. Uid int `json:"uid"`
  12. Amount string `json:"amount"`
  13. State int `json:"state"`
  14. PayChannel int `json:"pay_channel"`
  15. Months int `json:"months"`
  16. PackageName string `json:"package_name"`
  17. CreateAt string `json:"create_at" `
  18. UpdateAt string `json:"update_at" `
  19. }