| 12345678910111213141516 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Common;
- using System.Model;
- using System.Text;
- using System.Threading.Tasks;
- namespace System.IRepositories
- {
- public interface ISys_DeptTeamRepository : IRepository<T_Sys_DeptTeam>
- {
- Task<PageData<V_DeptTeam>> GetListViewByPage(List<IConditionalModel> conModels, MyPageModel pagemodel, string orderby);
- }
- }
|