潘志宝
2024-10-29 d41f14d2986b46da9dd7742f6df63d9725cd29f3
提交 | 用户 | 时间
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 }