using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumSoftwareStatus { [Note("已删除")] Deleted = -1, [Note("正常")] Normal = 1 } public enum EnumSoftArticalType { [Note("首页信息")] IndexInfo = 0, [Note("软件教程")] SoftCourse = 1, [Note("软件视频")] Video = 2, [Note("相关问答")] QandA = 3 } }