special_add_strategy.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. package http_model
  2. type SpecialAddStrategyRequest struct {
  3. SProjectId int `json:"s_project_id"` // 服务商种草任务ID
  4. RecruitStrategys []ChangeRecruitStrategy `json:"recruit_strategys"` // 招募策略
  5. SubAccountId int `json:"sub_account_id"` // 子账号ID
  6. SupplierId int `json:"supplier_id"` // 服务商ID
  7. }
  8. type ChangeRecruitStrategy struct {
  9. FeeForm int64 `json:"fee_form"`
  10. StrategyID int64 `json:"strategy_id"`
  11. FollowersLow int64 `json:"followers_low"`
  12. FollowersUp int64 `json:"followers_up"`
  13. RecruitNumber int64 `json:"recruit_number"`
  14. Offer float64 `json:"offer"`
  15. TOffer float64 `json:"t_offer"`
  16. ProjectID string `json:"project_id"`
  17. ServiceCharge float64 `json:"service_charge"`
  18. ServiceRate int `json:"service_rate"`
  19. SProjectId int `json:"s_project_id"`
  20. SLocalId int `json:"s_local_id"`
  21. StrategyType int `json:"strategy_type"`
  22. QuoteRecruitStrategyId int `json:"quote_recruit_strategy_id"`
  23. }
  24. func NewSpecialAddStrategyRequest() *SpecialAddStrategyRequest {
  25. return new(SpecialAddStrategyRequest)
  26. }
  27. func NewSpecialAddStrategyResponse() *CommonResponse {
  28. resp := new(CommonResponse)
  29. return resp
  30. }