using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 是否删除。1=删除;0=没删除。 /// public enum IsDelete { /// /// 1=删除 /// [Description("1=删除")] Yes=1, /// /// 0=没删除 /// [Description("0=没删除")] No=0 } }