Merge branch 'master' into net6.0

This commit is contained in:
不做码农
2022-04-04 08:27:47 +08:00
29 changed files with 1468 additions and 208 deletions

View File

@@ -0,0 +1,20 @@
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository
{
/// <summary>
/// 演示仓储
///
/// @author zz
/// @date 2022-03-31
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GenDemoRepository : BaseRepository<GenDemo>
{
#region
#endregion
}
}