using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.Core.Enums { /// /// 液冷工作状态 /// public enum CoolState { /// /// 停机模式 /// Stop = 1, /// /// 制冷模式 /// Cool = 2, /// /// 加热模式 /// Heat = 3, /// /// 自循环模式 /// AutoCycle = 4, /// /// 自动模式 /// Auto = 5, } }