Files
shgx_tz_mes_backend_sync/ZR.Service/System/SysConfigService.cs

23 lines
647 B
C#
Raw Normal View History

2021-09-30 14:55:24 +08:00
using Infrastructure.Attribute;
using ZR.Model.System;
using ZR.Repository;
namespace ZR.Service.System
{
/// <summary>
/// 参数配置Service业务层处理
/// </summary>
[AppService(ServiceType = typeof(ISysConfigService), ServiceLifetime = LifeTime.Transient)]
2021-11-27 09:43:04 +08:00
public class SysConfigService : BaseService<SysConfig>, ISysConfigService
2021-09-30 14:55:24 +08:00
{
private readonly SysConfigRepository _SysConfigrepository;
2021-11-27 09:43:04 +08:00
public SysConfigService(SysConfigRepository repository) : base(repository)
2021-09-30 14:55:24 +08:00
{
_SysConfigrepository = repository;
}
#region
#endregion
}
}