pre
潘志宝
2024-09-25 9057425fa1472e48d79f7f8608ea80267e224135
提交 | 用户 | 时间
b425df 1 package com.iailab.module.model.common.enums;
2
3
4 import java.math.BigDecimal;
5
6 /**
7  * @Description: 通用常量
8  */
9 public interface CommonConstant {
10
11     int IS_ENABLE = 1;
12
13     BigDecimal BAD_VALUE = new BigDecimal("-2");
14
15     BigDecimal ZERO_VALUE = new BigDecimal("0");
16
17     String HTTP_API_ZXZK_IH = "ZXZK_IH";
18 }