using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 分页列表排序 /// public enum EnumPagedListOrder { /// /// 升序 /// Asc = 0, /// /// 降序 /// Desc = 1, } }