using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace HStation.Xhs { public enum eUploadStatus { // // 摘要: // 未上传 [Display(Name = "未上传")] [Description("未上传")] Disable, // // 摘要: // 未上传 [Display(Name = "上传中")] [Description("上传中")] process, // // 摘要: // 已上传 [Display(Name = "已上传")] [Description("已上传")] Enable } }