xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

13 lines
384 B
Plaintext

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}>
{
}
}