using System.ComponentModel; namespace StopShopping.Services.Models; /// /// 需求状态 /// public enum RequestStatus { [Description("全部")] All = -1, /// /// 发布 /// [Description("发布")] Publish = 0, /// /// 有竞标 /// [Description("有竞标")] Replied = 1, /// /// 待发货 /// [Description("待发货")] Accepted = 2, /// /// 待收货 /// [Description("待收货")] Sent = 3, /// /// 已完成 /// [Description("已完成")] Completed = 4, /// /// 已评价 /// [Description("已评价")] Commented = 5, }