using System.ComponentModel; namespace Myshipping.Core; /// /// 公共状态 /// public enum CommonStatus { /// /// 正常 /// [Description("正常")] ENABLE = 0, /// /// 停用 /// [Description("停用")] DISABLE = 1, /// /// 删除 /// [Description("删除")] DELETED = 2 }