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

17 lines
436 B
Plaintext
Raw Normal View History

using System;
using ${options.ModelsNamespace}.Models;
2021-12-15 12:11:21 +08:00
namespace ${options.IServicsNamespace}.${options.SubNamespace}.I${options.SubNamespace}Service
{
/// <summary>
/// ${genTable.FunctionName}service接口
///
/// @author ${replaceDto.Author}
/// @date ${replaceDto.AddTime}
/// </summary>
2021-12-22 18:15:18 +08:00
public interface I${replaceDto.ModelTypeName}Service : IBaseService<${replaceDto.ModelTypeName}>
{
}
}