using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Enums { /// /// 班别 /// public enum EnumShift { /// /// 白班 /// Day = 0, /// /// 晚班 /// Night = 1, /// /// 全天 /// Full = 3 } }