package com.doumee.service.business.third.model.response;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2023/11/23 14:03
|
*/
|
@Data
|
@ApiModel("tms司机任务任务流程返回参数")
|
public class TmsDriveTaskTransportStopsResponse {
|
@ApiModelProperty(value = "运输单id" )
|
private String tmId;// 字符串 运输单id
|
@ApiModelProperty(value = "停靠点" )
|
private String stopNumber;// 数字 停靠点
|
@ApiModelProperty(value = "到货地" )
|
private String receiveLocation ;//字符串 到货地
|
@ApiModelProperty(value = "到达时间 有值则已经到达" )
|
private String actualArrivedDate;// 字符串 到达时间 有值则已经到达
|
|
|
}
|