jiangping
2024-12-30 43c7cf553e5c78d81b8f23a043901926c45eb0cf
server/visits/dmvisit_service/src/main/java/com/doumee/core/tms/model/response/TmsOrderNoFinishListResponse.java
@@ -11,30 +11,45 @@
@Data
@ApiModel("tms未完成合同列表返回参数")
public class TmsOrderNoFinishListResponse {
    @ApiModelProperty(value = "制单日期" )
    private String     ncCreateDate   ;//   字符串   制单日期   返回年月日,比如:2024-07-08
    @ApiModelProperty(value = "工厂名称" )
    private String     factoryName;//      字符串   工厂名称
    @ApiModelProperty(value = "工厂编码" )
    private String     factoryCode;//      字符串   工厂编码
    @ApiModelProperty(value = "运输单号" )
    private String     transportCode;//      字符串   运输单号
    @ApiModelProperty(value = "车牌号" )
    private String     platNumber;//      字符串   车牌号
    @ApiModelProperty(value = "营销订单编码" )
    private String    orderNumber;//   字符串   营销订单编码
    @ApiModelProperty(value = "合同号" )
    private String     contractNumber;//      字符串   合同号
    @ApiModelProperty(value = "状态 0未启运;1在途;2到货" )
    private String     status;//      字符串   状态   0  未启运;1   在途;2  到货
    @ApiModelProperty(value = "到达时间" )
    private String     arrivedDate;//      字符串   到达时间
    @ApiModelProperty(value = "出库时间" )
    private String     outDate   ;//   字符串   出库时间
    @ApiModelProperty(value = "运输计划形成时间" )
    private String     transportDate;//      字符串   运输计划形成时间
    @ApiModelProperty(value = "数量(万支)" )
    private String      ncTotality;//      数字   数量(万支)
    private String    contractNumber;//   字符串   合同号
    @ApiModelProperty(value = "运输单号" )
    private String    transportCode   ;//字符串   运输单号
    @ApiModelProperty(value = "运输车辆" )
    private String       plateNumber;//   字符串   运输车辆
    @ApiModelProperty(value = "状态" )
    private Integer      status;//   字符串   状态
    @ApiModelProperty(value = "状态描述" )
    private String      statusDesc;//   字符串   状态
    @ApiModelProperty(value = "任务下达时间" )
    private String     transportDate;//   字符串   任务下达时间
    @ApiModelProperty(value = "订单创建日期" )
    private String     createDate   ;//字符串   订单创建日期
    @ApiModelProperty(value = "发货地" )
    private String     deliveryEnterprise   ;//字符串   发货地
    @ApiModelProperty(value = "到货地" )
    private String      arriveEnterprise;//      字符串   到货地
    @ApiModelProperty(value = "订单类型" )
    private String      dispatchType   ;//   字符串   订单类型
    private String     receiveEnterprise   ;//字符串   到货地
    @ApiModelProperty(value = "司机姓名" )
    private String     driverName   ;//字符串   司机姓名
    @ApiModelProperty(value = "司机手机号" )
    private String    driverTel   ;//字符串   司机手机号
    @ApiModelProperty(value = "预计到达时间" )
    private String     plannedArrivedDate   ;//字符串   预计到达时间
    @ApiModelProperty(value = "运输量" )
    private String    totalQty;//   数字   运输量
    @ApiModelProperty(value = "发货仓库经度" )
    private String    deliveryLon;//   数字   发货仓库经度
    @ApiModelProperty(value = "发货仓库维度" )
    private String    deliveryLat   ;//数字   发货仓库维度
    @ApiModelProperty(value = "收货仓库经度" )
    private String    receiveLon;//   数字   收货仓库经度
    @ApiModelProperty(value = "收货仓库维度" )
    private String    receiveLat;//   数字   收货仓库维度
    @ApiModelProperty(value = "车辆经度" )
    private String    platLon   ;//数字   车辆经度
    @ApiModelProperty(value = "车辆经度" )
    private String    platLat   ;//数字   车辆经度
}