2021-09-08 18:12:08 +08:00
|
|
|
using System;
|
|
|
|
|
using Infrastructure.Attribute;
|
|
|
|
|
using {RepositoriesNamespace}.System;
|
2021-09-10 18:06:07 +08:00
|
|
|
using {ModelsNamespace}.Models;
|
2021-09-08 18:12:08 +08:00
|
|
|
|
|
|
|
|
namespace {RepositoriesNamespace}
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-09-24 18:37:51 +08:00
|
|
|
/// {FunctionName}仓储接口的实现
|
|
|
|
|
///
|
|
|
|
|
/// @author {Author}
|
|
|
|
|
/// @date {DateTime}
|
2021-09-08 18:12:08 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
|
|
|
public class {ModelTypeName}Repository : BaseRepository
|
|
|
|
|
{
|
|
|
|
|
#region 业务逻辑代码
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|