types.go 545 B

1234567891011121314151617
  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. Account_id int64 `header:"accountId,optional"`
  7. Ent_account_id int64 `header:"entAccountId,optional"`
  8. Ent_id int64 `header:"entId,optional"`
  9. Ent_user_id int64 `header:"entUserId,optional"`
  10. }
  11. type Reply struct {
  12. Error_code int64 `json:"error_code"`
  13. Error_msg string `json:"error_msg"`
  14. Data interface{} `json:"data"`
  15. }