1
zj
2025-08-24 4a79b4c9bc6f9f1c6c0f2d8b5edf755535ba2ad1
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java
@@ -13,6 +13,8 @@
@Data
public class UserAccountVo {
    private String keywords;
    // 自增ID主键
    private Integer id;
@@ -26,7 +28,7 @@
    private String password;
    // 账号类型: 0:真实 1:虚拟
    private Integer accountType = 0;
    private Integer accountType;
    // 云信账号
    private String cloudMessageAccount;
@@ -35,7 +37,7 @@
    private String nickname;
    // 账号状态: 0:正常 1:禁用
    private Integer status = 0;
    private Integer status;
    // 最近登录时间
    private Date loginTime;
@@ -69,4 +71,9 @@
    private Date updateTime;
    private Boolean deleted;
    //开始时间
    private Date startTime;
    //结束时间
    private Date endTime;
}