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.
32 lines
751 B
C#
32 lines
751 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProductionSystem_Model.Enum
|
|
{
|
|
/// <summary>
|
|
/// 设备枚举
|
|
/// </summary>
|
|
public enum EquipmentEnum
|
|
{
|
|
[Description("水泵1转速")]
|
|
SB1ZS_DB = 1,
|
|
[Description("水泵2转速")]
|
|
SB2ZS_DB = 2,
|
|
[Description("水泵3转速")]
|
|
SB3ZS_DB = 3,
|
|
|
|
[Description("反馈四通阀1状态")]
|
|
FKSTF1ZT_DB = 4,
|
|
[Description("反馈四通阀2状态")]
|
|
FKSTF2ZT_DB = 5,
|
|
[Description("电子膨胀阀1")]
|
|
DZPZF1_DB = 6,
|
|
[Description("电子膨胀阀2")]
|
|
DZPZF2_DB = 7,
|
|
}
|
|
}
|