special_add_strategy.go 679 B

12345678910111213141516171819
  1. package http_model
  2. import "youngee_b_api/model/gorm_model"
  3. type SpecialAddStrategyRequest struct {
  4. SProjectId int `json:"s_project_id"` // 服务商种草任务ID
  5. RecruitStrategys []gorm_model.RecruitStrategy `json:"recruit_strategys"` // 招募策略
  6. SubAccountId int `json:"sub_account_id"` // 子账号ID
  7. SupplierId int `json:"supplier_id"` // 服务商ID
  8. }
  9. func NewSpecialAddStrategyRequest() *SpecialAddStrategyRequest {
  10. return new(SpecialAddStrategyRequest)
  11. }
  12. func NewSpecialAddStrategyResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. return resp
  15. }