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

13 lines
384 B
Plaintext
Raw Normal View History

2023-03-01 18:23:29 +08:00
using Infrastructure.Attribute;
using ${options.ModelsNamespace}.${options.SubNamespace};
namespace ${options.RepositoriesNamespace}
{
/// <summary>
/// ${genTable.FunctionName}仓储
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class ${replaceDto.ModelTypeName}Repository : BaseRepository<${replaceDto.ModelTypeName}>
{
}
}