add_to_list.go 577 B

1234567891011121314151617
  1. package http_model
  2. type AddToListRequest struct {
  3. ProjectId string `json:"project_id"` // 待加入商单的种草任务ID
  4. EnterpriseId string `json:"enterprise_id"` // 商家ID
  5. SupplierId int `json:"supplier_id"` // 服务商ID
  6. SubAccountId int `json:"sub_account_id"` // 子账号ID
  7. // OperatorType int `json:"operator_type"` // 账号类型,1为主账号,2为子账号
  8. }
  9. func NewAddToListRequest() *AddToListRequest {
  10. return new(AddToListRequest)
  11. }
  12. func NewAddToListResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. return resp
  15. }