mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
配置管理增删改查
This commit is contained in:
13
Yi.Framework.Net6/Yi.Framework.Interface/IConfigService.cs
Normal file
13
Yi.Framework.Net6/Yi.Framework.Interface/IConfigService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.Common.Models;
|
||||
using Yi.Framework.Model.Models;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface
|
||||
{
|
||||
public partial interface IConfigService:IBaseService<ConfigEntity>
|
||||
{
|
||||
Task<PageModel<List<ConfigEntity>>> SelctPageList(ConfigEntity config, PageParModel page);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user