using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; namespace IStation.Model { /// /// 供电方式 /// public enum ePowerMode { /// /// 未知 /// UnKnown = -1, /// /// 市电 /// City = 1, /// /// 电池 /// Battery = 2, /// /// 太阳能 /// Solar = 3, } }