feat(ruoyi-member): 添加会员注册时间字段

新增 MemberVO 类中的 createTime 字段,用于记录会员的注册时间,并添加相应的 JSON 格式化注解和 Swagger 文档注解。
This commit is contained in:
huk 2025-09-20 13:44:42 +08:00
parent ab403a98e1
commit 4a369920df

View File

@ -96,6 +96,10 @@ public class MemberVO {
@Schema(description = "推广员关联时间格式yyyy-MM-dd HH:mm:ss")
private LocalDateTime spreadTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Schema(description = "注册时间格式yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime;
/** 会员等级 */
@Excel(name = "等级")
@Schema(description = "会员等级")