types.go 661 B

123456789101112131415161718192021222324252627
  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. EntId int64 `header:"entId"`
  13. WaitEmpowerId int64 `json:"wait_empower_id"`
  14. }
  15. type AddUsePersonReq struct {
  16. WaitEmpowerId int64 `json:"wait_empower_id"`
  17. EntId int64 `header:"entId"`
  18. EntUserId string `json:"ent_user_id"`
  19. }
  20. type DelUsePersonReq struct {
  21. EntnichePowerId int64 `json:"entniche_power_id"`
  22. }