ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.zhitan.common.constant;
 
/**
 * @Description: 常量封装
 * @author: yxw
 * @date: 2022年02月02日 11:37
 */
public class CommonConst {
    /**
     * 常量字符串 - 空字符串
     */
    public static final String EMPTY = "";
    /**
     * 双减号
     */
    public static final String DOUBLE_MINUS_SIGN = "--";
    /**
     * 百分比
     */
    public static final String PERCENTAGE = "%";
    /**
     * 字符串数字 -1
     */
    public static final String STR_NUMBER_MINUS_ONE = "-1";
    /**
     * 字符串数字 0
     */
    public static final String STR_NUMBER_0 = "0";
    /**
     * 字符串数字 1
     */
    public static final String STR_NUMBER_1 = "1";
    /**
     * 字符串数字 2
     */
    public static final String STR_NUMBER_2 = "2";
    /**
     * 字符串数字 3
     */
    public static final String STR_NUMBER_3 = "3";
    /**
     * 字符串数字 4
     */
    public static final String STR_NUMBER_4 = "4";
    /**
     * 字符串数字 5
     */
    public static final String STR_NUMBER_5 = "5";
    /**
     * 字符串数字 6
     */
    public static final String STR_NUMBER_6 = "6";
    /**
     * 字符串数字 7
     */
    public static final String STR_NUMBER_7 = "7";
    /**
     * 字符串数字 8
     */
    public static final String STR_NUMBER_8 = "8";
    /**
     * 字符串数字 9
     */
    public static final String STR_NUMBER_9 = "9";
    /**
     * 字符串数字 10
     */
    public static final String STR_NUMBER_10 = "10";
    /**
     * 字符串数字 11
     */
    public static final String STR_NUMBER_11 = "11";
    /**
     * 字符串数字 12
     */
    public static final String STR_NUMBER_12 = "12";
    /**
     * 大写字母 M
     */
    public static final String WORD_M = "M";
    /**
     * 大写字母 Y
     */
    public static final String WORD_Y = "Y";
    /**
     * 大写字母 D
     */
    public static final String WORD_D = "D";
    /**
     * 数字 0
     */
    public static final int DIGIT_0 = 0;
    /**
     * 数字 1
     */
    public static final int DIGIT_1 = 1;
    /**
     * 数字 2
     */
    public static final int DIGIT_2 = 2;
    /**
     * 数字 3
     */
    public static final int DIGIT_3 = 3;
    /**
     * 数字 4
     */
    public static final int DIGIT_4 = 4;
    /**
     * 数字 100
     */
    public static final int DIGIT_100 = 100;
    /**
     * 数字 1000
     */
    public static final int DIGIT_1000 = 1000;
    /**
     * 数字 -1
     */
    public static final int DIGIT_MINUS_1 = -1;
    /**
     * 数字 -3
     */
    public static final int DIGIT_MINUS_3 = -3;
    /**
     * 计算点识别规则 累积量
     */
    public static final String COMMON_STR_CALC_POINT_RULE_LJL = "_LJL";
    /**
     * 计算点识别规则 综合能耗
     */
    public static final String COMMON_STR_CALC_POINT_RULE_ZHNH = "_ZHNH";
    /**
     * 计算点识别规则 能源价格
     */
    public static final String COMMON_STR_CALC_POINT_RULE_NYJG = "_NYJG";
    /**
     * 时间类型字符串 - 天
     */
    public static final String TIME_TYPE_DAY = "DAY";
    /**
     * 重算接口地址
     */
    public static final String RE_CALC_INTERFACE_ADDRESS = "http://127.0.0.1:8999/computing/recalc";
}