feat: 添加申请时间字段
This commit is contained in:
@@ -49,6 +49,10 @@ public class LicensePageReqVO extends PageParam {
|
|||||||
@Schema(description = "申请人")
|
@Schema(description = "申请人")
|
||||||
private Long applicant;
|
private Long applicant;
|
||||||
|
|
||||||
|
@Schema(description = "申请时间")
|
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
|
private LocalDateTime[] applicationTime;
|
||||||
|
|
||||||
@Schema(description = "审批人")
|
@Schema(description = "审批人")
|
||||||
private Long approver;
|
private Long approver;
|
||||||
|
|
||||||
|
|||||||
@@ -73,6 +73,10 @@ public class LicenseRespVO implements VO {
|
|||||||
@ExcelProperty("申请人")
|
@ExcelProperty("申请人")
|
||||||
private Long applicant;
|
private Long applicant;
|
||||||
|
|
||||||
|
@Schema(description = "申请时间")
|
||||||
|
@ExcelProperty("申请时间")
|
||||||
|
private LocalDateTime applicationTime;
|
||||||
|
|
||||||
@Schema(description = "审批人")
|
@Schema(description = "审批人")
|
||||||
@ExcelProperty("审批人")
|
@ExcelProperty("审批人")
|
||||||
private Long approver;
|
private Long approver;
|
||||||
|
|||||||
@@ -48,6 +48,9 @@ public class LicenseSaveReqVO {
|
|||||||
@Schema(description = "申请人")
|
@Schema(description = "申请人")
|
||||||
private Long applicant;
|
private Long applicant;
|
||||||
|
|
||||||
|
@Schema(description = "到期时间")
|
||||||
|
private LocalDateTime applicationTime;
|
||||||
|
|
||||||
@Schema(description = "审批人")
|
@Schema(description = "审批人")
|
||||||
private Long approver;
|
private Long approver;
|
||||||
|
|
||||||
|
|||||||
@@ -79,6 +79,10 @@ public class LicenseDO extends BaseDO {
|
|||||||
* 申请人
|
* 申请人
|
||||||
*/
|
*/
|
||||||
private Long applicant;
|
private Long applicant;
|
||||||
|
/**
|
||||||
|
* 申请时间
|
||||||
|
*/
|
||||||
|
private LocalDateTime applicationTime;
|
||||||
/**
|
/**
|
||||||
* 审批人
|
* 审批人
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user