types.go 575 B

123456789101112131415161718192021
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type Req struct {
  4. AppId string `header:"appId,default=10000"`
  5. Function_code string `header:"functionCode,optional"`
  6. User_id int64 `header:"newUserId,optional"`
  7. Ent_id int64 `header:"entId,optional"`
  8. Ent_user_id int64 `header:"entUserId,optional"`
  9. }
  10. type SurplusData struct {
  11. Surplus int64 `json:"surplus"`
  12. Total int64 `json:"total"`
  13. }
  14. type Reply struct {
  15. Error_code int64 `json:"error_code"`
  16. Error_msg string `json:"error_msg"`
  17. Data interface{} `json:"data"`
  18. }