会员开通时间和到期时间VO/DO

This commit is contained in:
Flow 2025-06-13 17:05:11 +08:00
parent ccff7b4d04
commit 8e219c0b61
4 changed files with 33 additions and 2 deletions

View File

@ -62,4 +62,12 @@ public class PersonPageReqVO extends PageParam {
@Schema(description = "更新人")
private String updateby;
@Schema(description = "会员开始时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] vipstarttime;
@Schema(description = "会员结束时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] vipendtime;
}

View File

@ -77,4 +77,12 @@ public class PersonRespVO {
@ExcelProperty("更新人")
private String updateby;
@Schema(description = "会员开始时间")
@ExcelProperty("会员开始时间")
private String vipstarttime;
@Schema(description = "会员结束时间")
@ExcelProperty("会员结束时间")
private String vipendtime;
}

View File

@ -67,4 +67,10 @@ public class PersonSaveReqVO {
@Schema(description = "更新人")
private String updateby;
@Schema(description = "会员开始时间")
private String vipstarttime;
@Schema(description = "会员结束时间")
private String vipendtime;
}

View File

@ -102,5 +102,14 @@ public class PersonDO {
*/
@TableField("updateby")
private String updateby;
/**
* 会员开始时间
*/
@TableField("vipstarttime")
private String vipstarttime;
/**
* 会员结束时间
*/
@TableField("vipendtime")
private String vipendtime;
}