自动化立体仓库 - WMS系统
#
luxiaotao1123
2021-01-29 2bd674963fda5c14685ab3fa973366d2c2ae527f
src/main/java/com/zy/system/entity/User.java
@@ -60,7 +60,7 @@
    private Date createTime;
    /**
     * 状态 1: 启用  2: 冻结  3: 删除
     * 状态 1: 启用  0: 禁用
     */
    private Integer status;
@@ -154,10 +154,8 @@
        switch (this.status){
            case 1:
                return "启用";
            case 2:
                return "冻结";
            case 3:
                return "删除";
            case 0:
                return "禁用";
            default:
                return String.valueOf(this.status);
        }