19 lines
421 B
C#
19 lines
421 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Model.System;
|
|
|
|
namespace ARW.Repository
|
|
{
|
|
/// <summary>
|
|
/// 参数配置仓储接口的实现
|
|
///
|
|
/// @author zhaorui
|
|
/// @date 2021-09-29
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class SysConfigRepository : BaseRepository<SysConfig>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |