| package com.doumee.service.business.third.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 TmsOrderInfoResponse { | 
|   | 
|     @ApiModelProperty(value = "合同号" ) | 
|     private String   contractNumber    ; //合同号 | 
|     @ApiModelProperty(value = "发货地" ) | 
|     private String   deliveryEnterprise    ; //发货地 | 
|     @ApiModelProperty(value = "到货地" ) | 
|     private String    receiveEnterprise    ; //到货地 | 
| //    @ApiModelProperty(value = "车牌号" ) | 
| //    private String    plateNumber; //    车牌号    合同未配载则无 | 
|     @ApiModelProperty(value = "当前运输单状态" ) | 
|     private String   orderStatus    ; //当前运输单状态 | 
|     @ApiModelProperty(value = "制单时间" ) | 
|     private String   ncCreateDate; //    制单时间 | 
|     @ApiModelProperty(value = "运输如期" ) | 
|     private String   transportDate; // | 
|     @ApiModelProperty(value = "运输单号" ) | 
|     private String   transportCode; // | 
|     @ApiModelProperty(value = "司机姓名" ) | 
|     private String   driverName; // | 
|     @ApiModelProperty(value = "司机电话" ) | 
|     private String   driverTel; // | 
|     @ApiModelProperty(value = "状态描述" ) | 
|     private String   orderStatusDesc; // | 
|     @ApiModelProperty(value = "车牌号" ) | 
|     private String    plateName; //": "皖CC2585", | 
|     @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; //        计划到达时间 | 
|     @ApiModelProperty(value = "是否超库存 0非超库存 1:超库存" ) | 
|     private Integer overStock    ; | 
|     @ApiModelProperty(value = "gis轨迹经纬度集合" ) | 
|     private List<TmsGisListResponse> gisList; | 
|     @ApiModelProperty(value = "生命周期集合" ) | 
|     private List<TmsCircleStatusResultListResponse> cicleStatusList; | 
| } |