jiangping
2024-12-30 3af254f1b36e7722673fcebe110da524b276105c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.doumee.core.tms.model.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("tms合同列表返回参数")
public class TmsOrderListResponse {
    /**
     {
         "code": 0,
         "data": [
             {
                 "fromRepertoty": "合肥成品库",
                 "ncCreateDate": "2023-12-04 10:36:15",
                 "toRepertoty": "天津市中心仓库",
                 "contractNumber": "112308335",
                 "orderStatus": "到达卸货地"
             }
         ],
         "message": "操作成功"
     }
     */
    @ApiModelProperty(value = "合同号" )
    private String    contractNumber; //    合同号
    @ApiModelProperty(value = "发货地" )
    private String    fromRepertoty; //    发货地
    @ApiModelProperty(value = "到货地" )
    private String   toRepertoty    ; //到货地
    @ApiModelProperty(value = "车牌号" )
    private String   plateName; //    车牌号    合同未配载则无
    @ApiModelProperty(value = "当前运输单状态" )
    private String    orderStatus; //    当前运输单状态
    @ApiModelProperty(value = "制单时间" )
    private String  ncCreateDate; //    制单时间
    @ApiModelProperty(value = "发货地" )
    private String   deliveryEnterprise; //    发货地    发货仓库名称
    @ApiModelProperty(value = "到货地" )
    private String   receiveEnterprise; //        到货地    卸货仓库名称
    @ApiModelProperty(value = "运输单号" )
    private String    transportCode; //        运输单号    可能为空(无运输单的情况)
    @ApiModelProperty(value = "状态描述" )
    private String    orderStatusDesc; //        状态描述
    @ApiModelProperty(value = "发货地纬度" )
    private String    deliveryLon; //        状态描述
    @ApiModelProperty(value = "发货地经度" )
    private String    deliveryLat; //        状态描述
    @ApiModelProperty(value = "收货地纬度" )
    private String    receiveLon; //        状态描述
    @ApiModelProperty(value = "收货地经度" )
    private String    receiveLat; //        状态描述
    @ApiModelProperty(value = "计划到达时间" )
    private String    plannedArrivedDate; //        状态描述
    private long timeStamp;//时间戳
 
 
 
}