feat(ruoyi-member): 添加会员注册时间字段
新增 MemberVO 类中的 createTime 字段,用于记录会员的注册时间,并添加相应的 JSON 格式化注解和 Swagger 文档注解。
This commit is contained in:
parent
ab403a98e1
commit
4a369920df
@ -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 = "会员等级")
|
||||
|
Loading…
x
Reference in New Issue
Block a user