| 123456789101112131415161718192021 |
- using System.Common;
- using System;
- using System.Model;
- using System.Threading.Tasks;
- using SqlSugar;
- using System.Collections.Generic;
- namespace System.IRepositories
- {
- public interface ISys_UserAccountRepository : IRepository<T_Sys_UserAccount>
- {
- /// <summary>
- /// 联合查询用户信息
- /// </summary>
- /// <param name="conModels"></param>
- /// <param name="pagemodel"></param>
- /// <returns></returns>
- Task<PageData<V_UserAccount>> GetListViewByPage(List<IConditionalModel> conModels, MyPageModel pagemodel,string orderby);
- }
- }
|