CreateSecTaskLogistics.go 1.0 KB

123456789101112131415161718192021222324
  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. }
  11. type CreateSecTaskLogisticsData struct {
  12. }
  13. func NewCreateSecTaskLogisticsRequest() *CreateSecTaskLogisticsRequest {
  14. return new(CreateSecTaskLogisticsRequest)
  15. }
  16. func NewCreateSecTaskLogisticsResponse() *CommonResponse {
  17. resp := new(CommonResponse)
  18. resp.Data = new(CreateSecTaskLogisticsData)
  19. return resp
  20. }