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