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;
|
|
|
|
|
}
|