12345678910111213141516171819202122 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type SurplusReq struct {
- Appid string `json:"appid"`
- Function_code string `json:"functionCode"`
- Muser_id string `json:"userId,optional"`
- User_id int64 `json:"newUserId,optional"`
- Ent_id int64 `json:"entId,optional"`
- Ent_user_id int64 `json:"entUserId,optional"`
- }
- type Reply struct {
- Err_code int64 `json:"err_code"`
- Err_msg string `json:"err_msg"`
- Data interface{} `json:"data"`
- }
- type SurplusData struct {
- Surplus int64 `json:"surplus"`
- Total int64 `json:"total"`
- }
|