配置管理增删改查

This commit is contained in:
陈淳
2022-09-23 18:46:37 +08:00
parent 261d9fcd79
commit 9149d6de9a
11 changed files with 217 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class ConfigService : BaseService<ConfigEntity>, IConfigService
{
public ConfigService(IRepository<ConfigEntity> repository) : base(repository)
{
}
}
}