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