using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AutoMapper; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_ITelescopicService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_TelescopicService { public class LoginhsyService : ServiceBase>, ILoginhsyService { public IRepository Repository => BaseDal; public LoginhsyService(IRepository BaseDal) : base(BaseDal) { } //public override PageGridData GetPageData(PageDataOptions options) //{ // OrderByParameters = new Dictionary { // { // nameof(Dt_Loginhsy.CreateDate),SqlSugar.OrderByType.Desc//按时间降序排列 // } }; // return base.GetPageData(options); //} } }