工业互联网平台2.0版本后端代码
mpk
潘志宝
2024-09-20 b425df38b434f1eaf4762690905cd7affcf4c7b6
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";
}