Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/RABC/IDictionaryService.cs

21 lines
637 B
C#
Raw Normal View History

2022-09-09 19:34:20 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Yi.Framework.Common.Models;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Interface.Base;
using Yi.Framework.Model.RABC.Entitys;
2022-09-09 19:34:20 +08:00
using Yi.Framework.Repository;
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Interface.RABC
2022-09-09 19:34:20 +08:00
{
2023-01-01 23:06:11 +08:00
public partial interface IDictionaryService:IBaseService<DictionaryEntity>
2022-09-09 19:34:20 +08:00
{
/// <summary>
/// 动态条件分页查询
/// </summary>
/// <param name="dic"></param>
/// <param name="page"></param>
/// <returns></returns>
Task<PageModel<List<DictionaryEntity>>> SelctPageList(DictionaryEntity dic, PageParModel page);
}
}