1234567891011121314151617 |
- package http_model
- type AddToListRequest struct {
- ProjectId string `json:"project_id"` // 待加入商单的种草任务ID
- EnterpriseId string `json:"enterprise_id"` // 商家ID
- SupplierId int `json:"supplier_id"` // 服务商ID
- SubAccountId int `json:"sub_account_id"` // 子账号ID
- // OperatorType int `json:"operator_type"` // 账号类型,1为主账号,2为子账号
- }
- func NewAddToListRequest() *AddToListRequest {
- return new(AddToListRequest)
- }
- func NewAddToListResponse() *CommonResponse {
- resp := new(CommonResponse)
- return resp
- }
|