CreateSecTaskLogistics.go 1.2 KB

1234567891011121314151617181920212223242526
  1. package http_model
  2. type CreateSecTaskLogisticsRequest struct {
  3. TaskID string `json:"task_id"` // 任务id
  4. CompanyName string `json:"company_name"` // 实物商品-物流公司名称
  5. LogisticsNumber string `json:"logistics_number"` // 实物商品-物流单号
  6. ExplorestoreStarttime string `json:"explorestore_starttime"` // 线下探店-探店开始时间
  7. ExplorestoreEndtime string `json:"explorestore_endtime"` // 线下探店-探店结束时间
  8. ExplorestorePeriod string `json:"explorestore_period"` // 线下探店-探店持续时间
  9. ThingsType int `json:"things_type"` // 产品类型 1:实物, 3:线下探店
  10. EnterpriseId string `json:"enterprise_id"` // 商家ID
  11. SubAccountId int `json:"sub_account_id"` // 子账号ID
  12. }
  13. type CreateSecTaskLogisticsData struct {
  14. }
  15. func NewCreateSecTaskLogisticsRequest() *CreateSecTaskLogisticsRequest {
  16. return new(CreateSecTaskLogisticsRequest)
  17. }
  18. func NewCreateSecTaskLogisticsResponse() *CommonResponse {
  19. resp := new(CommonResponse)
  20. resp.Data = new(CreateSecTaskLogisticsData)
  21. return resp
  22. }