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<Dt_Loginhsy, IRepository<Dt_Loginhsy>>, ILoginhsyService
|
{
|
public IRepository<Dt_Loginhsy> Repository => BaseDal;
|
|
public LoginhsyService(IRepository<Dt_Loginhsy> BaseDal) : base(BaseDal)
|
{
|
|
}
|
//public override PageGridData<Dt_Loginhsy> GetPageData(PageDataOptions options)
|
//{
|
// OrderByParameters = new Dictionary<string, SqlSugar.OrderByType> {
|
// {
|
// nameof(Dt_Loginhsy.CreateDate),SqlSugar.OrderByType.Desc//按时间降序排列
|
// } };
|
// return base.GetPageData(options);
|
//}
|
|
}
|
|
}
|