2022-09-10 20:05:45 +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-10 20:05:45 +08:00
|
|
|
|
using Yi.Framework.Repository;
|
|
|
|
|
|
|
2023-01-01 23:06:11 +08:00
|
|
|
|
namespace Yi.Framework.Interface.RABC
|
2022-09-10 20:05:45 +08:00
|
|
|
|
{
|
2023-01-01 23:06:11 +08:00
|
|
|
|
public partial interface IDictionaryInfoService:IBaseService<DictionaryInfoEntity>
|
2022-09-10 20:05:45 +08:00
|
|
|
|
{
|
|
|
|
|
|
Task<PageModel<List<DictionaryInfoEntity>>> SelctPageList(DictionaryInfoEntity dicInfo, PageParModel page);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|