types.go 623 B

1234567891011121314151617181920212223242526
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type Resp struct {
  4. Error_code int64 `json:"error_code"` //响应代码
  5. Error_msg string `json:"error_msg"` //响应消息
  6. Data interface{} `json:"data"`
  7. }
  8. type BuyProductListReq struct {
  9. EntId int64 `header:"entId"`
  10. }
  11. type UsePersonListReq struct {
  12. WaitEmpowerId int64 `json:"wait_empower_id"`
  13. }
  14. type AddUsePersonReq struct {
  15. WaitEmpowerId int64 `json:"wait_empower_id"`
  16. EntId int64 `header:"entId"`
  17. EntUserId string `json:"ent_user_id"`
  18. }
  19. type DelUsePersonReq struct {
  20. EntnichePowerId int64 `json:"entniche_power_id"`
  21. }