1234567891011121314151617 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Req struct {
- AppId string `header:"appId,default=10000"`
- Function_code string `header:"functionCode,optional"`
- Account_id int64 `header:"accountId,optional"`
- Ent_account_id int64 `header:"entAccountId,optional"`
- Ent_id int64 `header:"entId,optional"`
- Ent_user_id int64 `header:"entUserId,optional"`
- }
- type Reply struct {
- Error_code int64 `json:"error_code"`
- Error_msg string `json:"error_msg"`
- Data interface{} `json:"data"`
- }
|