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 TmsDriveTaskInfoResponse {
|
@ApiModelProperty(value = "任务id" )
|
private String id ; //字符串 任务id
|
|
@ApiModelProperty(value = "运输单号" )
|
private String transportCode ; //字符串 运输单号
|
@ApiModelProperty(value = "车牌号" )
|
private String plateNumber; // 字符串 车牌号
|
@ApiModelProperty(value = "司机手机号码" )
|
private String driverTel ; // 字符串 司机手机号码
|
@ApiModelProperty(value = "物料类型 1:成品, 2:托盘" )
|
private String materialType ; //字符串 物料类型 1:成品, 2:托盘
|
@ApiModelProperty(value = "业务类型 1: 成品销售, 2: 成品移库, 3: 空托盘-工业调剂, 4: 空托盘-商业回收, 5: 空托盘-托盘带回" )
|
private String businessType; // 字符串
|
@ApiModelProperty(value = "任务状态 0: 待执行, 1: 执行中(在途), 2:完成(到货)" )
|
private String logisticsStatus ; //字符串
|
@ApiModelProperty(value = "承运商" )
|
private String carrierName ; //字符串
|
@ApiModelProperty(value = "发货点" )
|
private String startCity; // 字符串 发货点
|
@ApiModelProperty(value = "卸货点" )
|
private String endCity ; //字符串
|
@ApiModelProperty(value = "任务下达时间" )
|
private String receiveDate ; //字符串
|
@ApiModelProperty(value = "司机姓名" )
|
private String driverName; // 字符串
|
@ApiModelProperty(value = "是否托盘联运 1:是 0:否" )
|
private String isPalletTransport; // 字符串
|
@ApiModelProperty(value = "品规明细" )
|
private List<TmsDriveTaskProductDetailsResponse> productDetails;//品规明细
|
@ApiModelProperty(value = "托盘明细" )
|
private List<TmsDriveTaskPalletDetailsResponse> palletDetails;//托盘明细
|
@ApiModelProperty(value = "任务流程" )
|
private List<TmsDriveTaskTransportStopsResponse> transportStops;//任务流程
|
|
|
|
|
}
|