dengzedong
2024-09-20 8c41fe94af2f3b94a913289c8f8c3d687037a00b
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";
}