12345678910111213141516171819202122 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type SurplusReq struct {
- Appid string `json:"appid,default=10000"`
- Function_code string `json:"functionCode,default=xxfb_gyxx_add"`
- Muser_id string `json:"userId,optional"`
- User_id int64 `json:"newUserId,optional"`
- Ent_id int64 `json:"entId,optional,default=55"`
- 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"`
- }
|