namespace StopShopping.Services.Models.Req; /// /// 需求排序 /// public enum RequestOrderBys { /// /// 发布时间 /// PublishTime, /// /// 发布时间倒序j /// PublishTimeDesc, /// /// 分类id /// CategoryId, /// /// 分类id倒序 /// CategoryIdDesc, /// /// 竞标数量 /// ReplyAmount, /// /// 竞标数量倒序 /// ReplyAmountDesc, }