1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.iailab.module.shasteel.mq.common.constant;
|
|
| import java.math.BigDecimal;
|
| /**
| * @Description: 通用常量
| */
| public interface CommonConstant {
|
| //压缩空气调度方案code
| String COMPRESSOR_CODE = "Air";
|
| //蒸汽调度方案code
| String STEAM_CODE = "sha01";
| }
|
|