using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Unit { /// /// 体积单位枚举 //累积流量使用此枚举 /// public enum eUnitVol { L=0,//升 M3=1,//立方米 } }