潘志宝
2024-11-15 4be7d863a161b64f8592a789d699e807545e7dc6
提交 | 用户 | 时间
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
d41f14 17     String iHyperDB = "iHyperDB";
a6de49 18 }