调整 业务
This commit is contained in:
+4
@@ -46,6 +46,10 @@ public class LoadingManageVO extends LoadingManage {
|
||||
@Schema(description = "业务状态名称")
|
||||
private String businessStatusName;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "是否存在司机拒绝接单(可重新派单)")
|
||||
private Boolean driverRejected;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "运单号")
|
||||
private String waybillNo;
|
||||
|
||||
+22
@@ -27,8 +27,11 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.springblade.transport.pojo.entity.TransportPlan;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@@ -72,5 +75,24 @@ public class TransportPlanVO extends TransportPlan {
|
||||
@Schema(description = "计划调度生成的运单")
|
||||
private List<WaybillVO> dispatchRows;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "计划开始日期起")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private LocalDate planStartDateStart;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "计划开始日期止")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private LocalDate planStartDateEnd;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "创建开始时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime createTimeStart;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "创建结束时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime createTimeEnd;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user