Files
shgx_tz_mes_backend_sync/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/RepositoryTemplate.txt

20 lines
494 B
Plaintext
Raw Normal View History

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