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