Compare commits
No commits in common. "2db74358d5a037436b6455f3c617982bef18dfbb" and "82a64323c34b860906b107f67e8c66aacb9e7e9e" have entirely different histories.
2db74358d5
...
82a64323c3
@ -31,7 +31,7 @@ public class ClglPageReqVO extends PageParam {
|
|||||||
private Integer carType;
|
private Integer carType;
|
||||||
|
|
||||||
@Schema(description = "驾驶员")
|
@Schema(description = "驾驶员")
|
||||||
private String carDriver;
|
private Integer carDriver;
|
||||||
|
|
||||||
@Schema(description = "用车开始时间")
|
@Schema(description = "用车开始时间")
|
||||||
private LocalDateTime carStart;
|
private LocalDateTime carStart;
|
||||||
|
@ -40,7 +40,7 @@ public class ClglRespVO {
|
|||||||
|
|
||||||
@Schema(description = "驾驶员", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "驾驶员", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("驾驶员")
|
@ExcelProperty("驾驶员")
|
||||||
private String carDriver;
|
private Integer carDriver;
|
||||||
|
|
||||||
@Schema(description = "用车开始时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "用车开始时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("用车开始时间")
|
@ExcelProperty("用车开始时间")
|
||||||
|
@ -31,7 +31,7 @@ public class ClglSaveReqVO {
|
|||||||
|
|
||||||
@Schema(description = "驾驶员", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "驾驶员", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "驾驶员不能为空")
|
@NotNull(message = "驾驶员不能为空")
|
||||||
private String carDriver;
|
private Integer carDriver;
|
||||||
|
|
||||||
@Schema(description = "用车开始时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "用车开始时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "用车开始时间不能为空")
|
@NotNull(message = "用车开始时间不能为空")
|
||||||
|
@ -68,7 +68,7 @@ public class ClglDO extends BaseDO {
|
|||||||
/**
|
/**
|
||||||
* 驾驶员
|
* 驾驶员
|
||||||
*/
|
*/
|
||||||
private String carDriver;
|
private Integer carDriver;
|
||||||
/**
|
/**
|
||||||
* 用车开始时间
|
* 用车开始时间
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user