houzhongjian
2025-01-20 4c1973a3c72a6cb8fdf772c8df14d4d00ea4ee95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.data.common.enums;
 
 
import java.math.BigDecimal;
 
/**
 * @Description: 通用常量
 */
public interface CommonConstant {
 
    int IS_ENABLE = 1;
 
    BigDecimal BAD_VALUE = new BigDecimal("-2");
 
    BigDecimal ZERO_VALUE = new BigDecimal("0");
 
    // 宝信IHD
    String iHyperDB = "iHyperDB";
}