25 lines
519 B
Plaintext
25 lines
519 B
Plaintext
using System;
|
|
using Infrastructure.Attribute;
|
|
using {RepositoriesNamespace}.System;
|
|
using {ModelsNamespace}.Models;
|
|
|
|
namespace {RepositoriesNamespace}
|
|
{
|
|
/// <summary>
|
|
/// 代码生成器生成
|
|
/// {TableNameDesc}仓储接口的实现
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class {ModelTypeName}Repository : BaseRepository
|
|
{
|
|
public {ModelTypeName}Repository()
|
|
{
|
|
}
|
|
|
|
#region 业务逻辑代码
|
|
|
|
|
|
|
|
#endregion
|
|
}
|
|
} |