You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
638 B
Java
38 lines
638 B
Java
package com.os.common.constant;
|
|
|
|
|
|
/**
|
|
* MES通用常量信息
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public class EmsConstants
|
|
{
|
|
/**
|
|
* 能源类型-电
|
|
*/
|
|
public static final String EMS_ENERGY_TYPE_DNB = "2";
|
|
|
|
/**
|
|
* 能源类型-水
|
|
*/
|
|
public static final String EMS_ENERGY_TYPE_WATER = "3";
|
|
|
|
/**
|
|
* 能源类型-蒸汽
|
|
*/
|
|
public static final String EMS_ENERGY_TYPE_STEAM = "4";
|
|
|
|
/**
|
|
* 能源类型-压缩空气
|
|
*/
|
|
public static final String EMS_ENERGY_TYPE_Air = "5";
|
|
|
|
/**
|
|
* 能源类型-氮气
|
|
*/
|
|
public static final String EMS_ENERGY_TYPE_NITROGEN = "6";
|
|
|
|
|
|
}
|