潘志宝
2024-09-23 0a2f6f78683ba1c4e07f1359c1e7bf105a4bd507
提交 | 用户 | 时间
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 }