2021-10-11 18:05:01 +08:00

24 lines
520 B
C#

using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository
{
/// <summary>
/// 代码生成演示仓储接口的实现
///
/// @author zr
/// @date 2021-09-27
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GendemoRepository : BaseRepository<Gendemo>
{
public GendemoRepository() : base(configId: 1)
{
}
#region
#endregion
}
}