using System.ComponentModel.DataAnnotations; namespace IRaCIS.Core.Domain.Share { public enum SystemNotice_NoticeModeEnum { //跑马灯 RunningLight = 0, //页面 Pages = 1 } public enum SystemNotice_NoticeStateEnum { NotPublish = 0, HavePublished = 1, HaveExpired = 2 } public enum SystemNotice_NoticeLevelEnum { SystemLevel = 0, TrialLevel = 1 } public enum SystemNotice_NoticeTypeEnum { SystemUpgrade = 0, TrialChanges = 1 } public enum SystemNotice_ApplicableProjectEnum { //非正式项目 OfficialTrial = 0, NoneOfficial = 1, Training = 3, All = 2, } public enum SysEmailLevel { not_sys = 0, //系统 sys = 1 } public enum FrontAudit { /// ///id /// [DisplayAttribute(Name = "id")] Id = 1, /// ///ChildGroup /// [DisplayAttribute(Name = "ChildGroup")] ChildGroup = 2, /// ///Code /// [DisplayAttribute(Name = "Code")] Code =3, /// ///DictionaryCode /// [DisplayAttribute(Name = "DictionaryType")] DictionaryType = 4, /// ///LineSpilt /// [DisplayAttribute(Name = "LineSpilt")] LineSpilt = 5, } public enum FrontAuditDateType { /// ///Date /// [DisplayAttribute(Name = "Date")] Date = 0, /// ///DateTime /// [DisplayAttribute(Name = "DateTime")] DateTime = 1, } }