cloudroam
2024-12-29 a02bed07c8281ae0fda850921eb7443393c5fb0c
src/main/java/com/mzl/flower/constant/Constants.java
@@ -12,6 +12,9 @@
    public static final String DEFAULT_MEMBER_ID = "1"; //默认会员等级
    public static final String DEFAULT_SUB_ACCOUNT_PARTNER = "partner"; //合伙人子账号权限根路径
    public static final String DEFAULT_SUB_ACCOUNT_SUPPLIER = "supplier"; //供应商子账号权限根路径
    /**
     * 审核结果
@@ -677,4 +680,80 @@
        }
    }
    public enum CUSTOM01 {
        ZERO(0)
        ,ONE(1)
            ;
        CUSTOM01(Integer desc) {
            this.desc = desc;
        }
        private Integer desc;
        public Integer getDesc() {
            return desc;
        }
    }
    public enum APP_MENU_TYPE {
        SUPPLIER("supplier")
        , PARTNER("partner")
        ;
        APP_MENU_TYPE(String desc) {
            this.desc = desc;
        }
        private String desc;
        public String getDesc() {
            return desc;
        }
    }
    public enum SMS_RECEIVE_TYPE {
        IMPORT("导入接收文件"), INPUT("手动输入"), SELECT("点击选择用户列表");
        SMS_RECEIVE_TYPE(String desc) {
            this.desc = desc;
        }
        private String desc;
        public String getDesc() {
            return desc;
        }
    }
    public enum SMS_TASK_STATUS {
        wait_publish("待发布"), in_execution("执行中"), complete("已完成"), failure("失败");
        SMS_TASK_STATUS(String desc) {
            this.desc = desc;
        }
        private String desc;
        public String getDesc() {
            return desc;
        }
    }
    public enum SMS_SEND_RESULT {
        success("成功"), failure("失败");
        SMS_SEND_RESULT(String desc) {
            this.desc = desc;
        }
        private String desc;
        public String getDesc() {
            return desc;
        }
    }
}