types.go 484 B

12345678910111213141516
  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 Reply struct {
  11. Error_code int64 `json:"error_code"`
  12. Error_msg string `json:"error_msg"`
  13. Data interface{} `json:"data"`
  14. }