shgx_tz_mom/ZR.Repository/Repositories/GendemoRepository.cs

20 lines
429 B
C#
Raw Normal View History

2021-09-27 08:06:09 +08:00
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository
{
/// <summary>
2021-12-01 21:29:57 +08:00
/// 代码生成演示仓储
2021-09-27 08:06:09 +08:00
///
/// @author zr
2021-12-01 21:29:57 +08:00
/// @date 2021-12-01
2021-09-27 08:06:09 +08:00
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GendemoRepository : BaseRepository<Gendemo>
{
#region
#endregion
}
}