You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
16 lines
419 B
2 years ago
|
namespace Cis.Application.Sys;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统字典值服务
|
||
|
/// </summary>
|
||
|
[ApiDescriptionSettings(SysInfo.GroupName, Order = SysInfo.GroupOrder)]
|
||
|
public class SysDictDataService : IDynamicApiController, ITransient
|
||
|
{
|
||
|
private readonly SqlSugarRepository<SysDictData> _sysDictDataRep;
|
||
|
|
||
|
public SysDictDataService(SqlSugarRepository<SysDictData> sysDictDataRep)
|
||
|
{
|
||
|
_sysDictDataRep = sysDictDataRep;
|
||
|
}
|
||
|
|
||
|
}
|