package com.doumee.service.business.third.model.response;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2023/11/23 14:03
|
*/
|
@Data
|
@ApiModel("tms司机任务列列表返回参数")
|
public class TmsDriveTaskListResponse {
|
@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; // 字符串
|
|
@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 startCityName; // 字符串 发货点
|
|
@ApiModelProperty(value = "卸货点" )
|
private String endCityName; // 字符串 卸货点
|
|
@ApiModelProperty(value = "任务下达时间" )
|
private String receiveDate; // 字符串 任务下达时间
|
|
|
|
|
}
|