优化代码生成

This commit is contained in:
izory
2021-09-13 20:33:37 +08:00
parent e3d9b8103b
commit 59b44b3928
13 changed files with 626 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository
{
/// <summary>
/// 仓储接口的实现
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GendemoRepository : BaseRepository
{
public GendemoRepository()
{
}
#region
#endregion
}
}