1234567891011121314151617181920212223242526 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Resp struct {
- Error_code int64 `json:"error_code"` //响应代码
- Error_msg string `json:"error_msg"` //响应消息
- Data interface{} `json:"data"`
- }
- type BuyProductListReq struct {
- EntId int64 `header:"entId"`
- }
- type UsePersonListReq struct {
- WaitEmpowerId int64 `json:"wait_empower_id"`
- }
- type AddUsePersonReq struct {
- WaitEmpowerId int64 `json:"wait_empower_id"`
- EntId int64 `header:"entId"`
- EntUserId int64 `json:"ent_user_id"`
- }
- type DelUsePersonReq struct {
- EntnichePowerId int64 `json:"entniche_power_id"`
- }
|