local_special_add_strategy.go 870 B

1234567891011121314151617181920
  1. package http_model
  2. import "youngee_b_api/model/gorm_model"
  3. type LocalSpecialAddStrategyRequest struct {
  4. SLocalId int `json:"s_local_id"` // 服务商本地生活任务ID
  5. RecruitStrategys []gorm_model.RecruitStrategy `json:"recruit_strategys"` // 招募策略
  6. SupplierId int `json:"supplier_id"` // 服务商ID
  7. SubAccountId int `json:"sub_account_id"` // 子账号ID
  8. // CreateStrategyType int `json:"create_strategy_type"` // 服务商修改服务费操作人类型:1服务商主账号,2子账号
  9. }
  10. func NewLocalSpecialAddStrategyRequest() *LocalSpecialAddStrategyRequest {
  11. return new(LocalSpecialAddStrategyRequest)
  12. }
  13. func NewLocalSpecialAddStrategyResponse() *CommonResponse {
  14. resp := new(CommonResponse)
  15. return resp
  16. }