Compare commits
2 Commits
82a64323c3
...
2db74358d5
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2db74358d5 | ||
![]() |
f31cc20c50 |
@ -31,7 +31,7 @@ public class ClglPageReqVO extends PageParam {
|
|||||||
private Integer carType;
|
private Integer carType;
|
||||||
|
|
||||||
@Schema(description = "驾驶员")
|
@Schema(description = "驾驶员")
|
||||||
private Integer carDriver;
|
private String 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 Integer carDriver;
|
private String 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 Integer carDriver;
|
private String 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 Integer carDriver;
|
private String carDriver;
|
||||||
/**
|
/**
|
||||||
* 用车开始时间
|
* 用车开始时间
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user