local_change_supplier_status.go 748 B

12345678910111213141516171819
  1. package http_model
  2. type LocalChangeSupplierStatusRequest struct {
  3. TaskIds []string `json:"task_ids"`
  4. TaskStatus string `json:"task_status"`
  5. SLocalId int `json:"s_local_id"` // 服务商加入商单后的本地生活ID
  6. SupplierId int `json:"supplier_id"` // 服务商ID
  7. SubAccountId int `json:"sub_account_id"` // 子任务ID
  8. SupplierStatus int `json:"supplier_status"` // 服务商任务状态 0表示达人来源非服务商 1待选 2已选 3落选
  9. }
  10. func NewLocalChangeSupplierStatusRequst() *LocalChangeSupplierStatusRequest {
  11. return new(LocalChangeSupplierStatusRequest)
  12. }
  13. func NewLocalChangeSupplierStatusResponse() *CommonResponse {
  14. resp := new(CommonResponse)
  15. return resp
  16. }