zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.constter.count.nomr;
 
public interface CountCoreKey {
 
 
 
    /**
     * 系统公式
     */
    public static final int _SYSTEM_MATH         = 5;
    
    /**
     * 补助条件
     */
    public static final int CRITERIA_TYPE     = 1;
    /**
     * 补助条件
     */
    public static final int CRITERIA_FORMULA_TYPE     = 11;
    /**
     * 补助标准
     */
    public static final int NORM_TYPE         = 2;
    /**
     * 补助金额
     */
    public static final int MONEY_TYPE         = 3;
    /**
     * 占位符
     */
    public static final String FLAG_SYMBOL = "[$][{]([^}]+)[}]";
 
    /**
     * 计算补助标准 and 
     */
    public static final int RELATION_AND = 1;  
    
    /**
     * 计算补助标准or
     */
    public static final int RELATION_OR = 0;
    
    
    /**
     * 选中
     */
    public static final int INVERSE_ON = 1;
    
    /**
     * 反选
     */
    public static final int INVERSE_OFF = 0;
    
    
    /**
     * 补助条件
     */
    public static final int AS_CRITERIA_TYPE     = 1;
    /**
     * 补助标准
     */
    public static final int AS_NORM_TYPE         = 2;
    /**
     * 补助金额
     */
    public static final int AS_MONEY_TYPE         = 3;
 
    /**
     * 系统公式
     */
    public static final int AS_SYSTEM_MATH         = 5;
    
    
 
    
}