local_special_add_strategy.go 811 B

12345678910111213141516171819
  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. CreateStrategyId int `json:"create_strategy_id"` // 替换招募策略操作人ID
  7. CreateStrategyType int `json:"create_strategy_type"` // 服务商修改服务费操作人类型:1服务商主账号,2子账号
  8. }
  9. func NewLocalSpecialAddStrategyRequest() *LocalSpecialAddStrategyRequest {
  10. return new(LocalSpecialAddStrategyRequest)
  11. }
  12. func NewLocalSpecialAddStrategyResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. return resp
  15. }