using System.Collections.Generic; using WIDESEA_Core.Enums; using WIDESEA_Entity.DomainModels; namespace WIDESEA_Services.Services { public partial class Sys_DictionaryListService { public override PageGridData GetPageData(PageDataOptions pageData) { base.OrderByExpression = x => new Dictionary() { { x.OrderNo,QueryOrderBy.Desc }, { x.DicList_ID,QueryOrderBy.Asc } }; return base.GetPageData(pageData); } } }