kaiyu
2021-05-14 26f163a9782ea92a814d05555a2ad145079a3cc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.moral.constant;
 
/**
 * 通用常量信息
 */
public class Constants {
    /*
     * 被删除标识
     * */
    public static final String DELETE = "1";
 
    /*
     * 未删除标识
     * */
    public static final String NOT_DELETE = "0";
 
    /*
     * 后台系统验证码配置列名
     * */
    public static final String MANAGE_VERIFICATIONCODE_COLUMN = "type";
 
    /*
     * web端系统验证码配置列名
     * */
    public static final String FRONT_VERIFICATIONCODE_COLUMN = "type";
 
    /*
     * 后台系统验证码列对应的值
     * */
    public static final String MANAGE_VERIFICATIONCODE_VALUE = "manage_verificationCode";
 
    /*
     * web端验证码配置列名
     * */
    public static final String FRONT_ERIFICATIONCODE_VALUE = "front_verificationCode";
 
    /*
     * 验证码开启标识
     * */
    public static final String VERFICATIONCODE_OPEN = "1";
 
    /*
     * 验证码关闭标识
     * */
    public static final String VERFICATIONCODE_CLOSE = "0";
 
    /*
     * 查询正序标识
     * */
    public static final String ORDER_ASC = "0";
 
    /*
     * 查询倒序标识
     * */
    public static final String ORDER_DESC = "1";
 
    /*
     * 删除子组织标识
     * */
    public static final Integer DELETE_CHILDREN_ORG = 1;
 
    /*
     * 网页端渠道
     * */
    public static final String WEB_CHANNEL = "1";
 
    /*
     * 登陆操作类型
     * */
    public static final String LOGIN_OPERTATE_TYPE = "0";
 
    /*
     * 添加操作类型
     * */
    public static final String INSERT_OPERATE_TYPE = "1";
 
    /*
     * 更新操作类型
     * */
    public static final String UPDATE_OPERATE_TYPE = "2";
 
    /*
     * 删除操作类型
     * */
    public static final String DELETE_OPERATE_TYPE = "3";
 
    /*
    * 数据库中公式原单位的占位符
    * */
    public static final String FORMULA_PLACEHOLDER = "{0}";
 
    /*
    * 单位字典类型
    * */
    public static final String SYSTEM_DICT_TYPE_UNIT = "unit";
 
 
 
}