package http_model type SpecialAddStrategyRequest struct { SProjectId int `json:"s_project_id"` // 服务商种草任务ID RecruitStrategys []ChangeRecruitStrategy `json:"recruit_strategys"` // 招募策略 SubAccountId int `json:"sub_account_id"` // 子账号ID SupplierId int `json:"supplier_id"` // 服务商ID } type ChangeRecruitStrategy struct { FeeForm int64 `json:"fee_form"` StrategyID int64 `json:"strategy_id"` FollowersLow int64 `json:"followers_low"` FollowersUp int64 `json:"followers_up"` RecruitNumber int64 `json:"recruit_number"` Offer float64 `json:"offer"` TOffer float64 `json:"t_offer"` ProjectID string `json:"project_id"` ServiceCharge float64 `json:"service_charge"` ServiceRate int `json:"service_rate"` SProjectId int `json:"s_project_id"` SLocalId int `json:"s_local_id"` StrategyType int `json:"strategy_type"` QuoteRecruitStrategyId int `json:"quote_recruit_strategy_id"` } func NewSpecialAddStrategyRequest() *SpecialAddStrategyRequest { return new(SpecialAddStrategyRequest) } func NewSpecialAddStrategyResponse() *CommonResponse { resp := new(CommonResponse) return resp }