feat: 微信登录获取用户信息,客户列表按最后登录排序,修复Lombok配置
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-03-24 03:17:27 +00:00
parent f0ce1fe825
commit 4fb18fc40e
6 changed files with 88 additions and 16 deletions

View File

@@ -31,6 +31,16 @@ public class Customer {
*/
private String wechatOpenid;
/**
* 微信昵称
*/
private String wechatNickname;
/**
* 微信头像
*/
private String wechatAvatar;
/**
* 地址
*/
@@ -51,6 +61,11 @@ public class Customer {
*/
private String createdBy;
/**
* 最后登录时间(用于订单客户排序)
*/
private LocalDateTime lastLoginAt;
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createdAt;