MrShi
2025-03-12 69a1b3bf45738f048361ee4ccb6bdc64fce35720
server/system_service/src/main/java/com/doumee/service/business/third/model/response/TmsOrderInfoResponse.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,61 @@
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   startTransportDate; //   èµ·è¿æ—¶é—´
    @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<TmsOrderDetailVOResponse> orderDetailVOList;
    @ApiModelProperty(value = "生命周期集合" )
    private List<TmsCircleStatusResultListResponse> cicleStatusList;
}