houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.enums;
H 2
3 /**
4  * System 字典类型的枚举类
5  *
6  * @author iailab
7  */
8 public interface DictTypeConstants {
9
10     String USER_TYPE = "user_type"; // 用户类型
11     String COMMON_STATUS = "common_status"; // 系统状态
12
13     // ========== SYSTEM 模块 ==========
14
15     String USER_SEX = "system_user_sex"; // 用户性别
16
17     String LOGIN_TYPE = "system_login_type"; // 登录日志的类型
18     String LOGIN_RESULT = "system_login_result"; // 登录结果
19
20     String ERROR_CODE_TYPE = "system_error_code_type"; // 错误码的类型枚举
21
22     String SMS_CHANNEL_CODE = "system_sms_channel_code"; // 短信渠道编码
23     String SMS_TEMPLATE_TYPE = "system_sms_template_type"; // 短信模板类型
24     String SMS_SEND_STATUS = "system_sms_send_status"; // 短信发送状态
25     String SMS_RECEIVE_STATUS = "system_sms_receive_status"; // 短信接收状态
26
27 }