Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.common.enums;
H 2
3
4 import java.math.BigDecimal;
5
6 /**
7  * @Description: 通用常量
8  */
9 public interface CommonConstant {
10
4d3533 11     int IS_ENABLE = 1;
a6de49 12
H 13     BigDecimal BAD_VALUE = new BigDecimal("-2");
14
15     BigDecimal ZERO_VALUE = new BigDecimal("0");
16
2f03e2 17     // 宝信IHD
d41f14 18     String iHyperDB = "iHyperDB";
a6de49 19 }