会员开通时间和到期时间VO/DO
This commit is contained in:
parent
ccff7b4d04
commit
8e219c0b61
@ -62,4 +62,12 @@ public class PersonPageReqVO extends PageParam {
|
|||||||
@Schema(description = "更新人")
|
@Schema(description = "更新人")
|
||||||
private String updateby;
|
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;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -77,4 +77,12 @@ public class PersonRespVO {
|
|||||||
@ExcelProperty("更新人")
|
@ExcelProperty("更新人")
|
||||||
private String updateby;
|
private String updateby;
|
||||||
|
|
||||||
|
@Schema(description = "会员开始时间")
|
||||||
|
@ExcelProperty("会员开始时间")
|
||||||
|
private String vipstarttime;
|
||||||
|
|
||||||
|
@Schema(description = "会员结束时间")
|
||||||
|
@ExcelProperty("会员结束时间")
|
||||||
|
private String vipendtime;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -65,6 +65,12 @@ public class PersonSaveReqVO {
|
|||||||
private String createby;
|
private String createby;
|
||||||
|
|
||||||
@Schema(description = "更新人")
|
@Schema(description = "更新人")
|
||||||
private String updateby;
|
private String updateby;
|
||||||
|
|
||||||
|
@Schema(description = "会员开始时间")
|
||||||
|
private String vipstarttime;
|
||||||
|
|
||||||
|
@Schema(description = "会员结束时间")
|
||||||
|
private String vipendtime;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -102,5 +102,14 @@ public class PersonDO {
|
|||||||
*/
|
*/
|
||||||
@TableField("updateby")
|
@TableField("updateby")
|
||||||
private String updateby;
|
private String updateby;
|
||||||
|
/**
|
||||||
|
* 会员开始时间
|
||||||
|
*/
|
||||||
|
@TableField("vipstarttime")
|
||||||
|
private String vipstarttime;
|
||||||
|
/**
|
||||||
|
* 会员结束时间
|
||||||
|
*/
|
||||||
|
@TableField("vipendtime")
|
||||||
|
private String vipendtime;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user