UpdateSecTaskLogistics.go 1.1 KB

12345678910111213141516171819202122232425
  1. package http_model
  2. type UpdateSecTaskLogisticsRequest struct {
  3. TaskID string `json:"task_id"` // 任务id
  4. LogisticsId int64 `json:"logistics_id"` // 物流信息id
  5. CompanyName string `json:"company_name"` // 实物商品-物流公司名称
  6. LogisticsNumber string `json:"logistics_number"` // 实物商品-物流单号
  7. ExplorestoreStarttime string `json:"explorestore_starttime"` // 线下探店-探店开始时间
  8. ExplorestoreEndtime string `json:"explorestore_endtime"` // 线下探店-探店结束时间
  9. ExplorestorePeriod string `json:"explorestore_period"` // 线下探店-探店持续时间
  10. ThingsType int `json:"things_type"` // 产品类型 1:实物, 3:线下探店
  11. }
  12. type UpdateSecTaskLogisticsData struct {
  13. }
  14. func NewUpdateSecTaskLogisticsRequest() *UpdateSecTaskLogisticsRequest {
  15. return new(UpdateSecTaskLogisticsRequest)
  16. }
  17. func NewUpdateSecTaskLogisticsResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(UpdateSecTaskLogisticsData)
  20. return resp
  21. }