using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hydro.Core { public class ObjectEnum { public enum StatusType { CLOSED = 0, OPEN = 1, ACTIVE = 2, DEFAULT = 3 } public enum PumpType { 调速泵, 定速泵 } public enum FlowCurveType { 流量扬程曲线 = 1, 流量功率曲线 = 2, 流量效率曲线 = 3 } } }