20 lines
494 B
Plaintext
20 lines
494 B
Plaintext
using System;
|
|
using Infrastructure.Attribute;
|
|
using {RepositoriesNamespace}.System;
|
|
using {ModelsNamespace}.Models;
|
|
|
|
namespace {RepositoriesNamespace}
|
|
{
|
|
/// <summary>
|
|
/// {FunctionName}仓储接口的实现
|
|
///
|
|
/// @author {Author}
|
|
/// @date {DateTime}
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class {ModelTypeName}Repository : BaseRepository<{ModelTypeName}>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |