CreateSecTaskLogisticsRequest.go 1.1 KB

12345678910111213141516171819202122232425
  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. SelectionId string `json:"selection_id"` // 带货任务ID
  11. }
  12. type CreateSecTaskLogisticsData struct {
  13. }
  14. func NewCreateSecTaskLogisticsRequest() *CreateSecTaskLogisticsRequest {
  15. return new(CreateSecTaskLogisticsRequest)
  16. }
  17. func NewCreateSecTaskLogisticsResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(CreateSecTaskLogisticsData)
  20. return resp
  21. }