2021-12-17 20:42:02 +08:00

17 lines
435 B
Plaintext

using System;
using ${options.ModelsNamespace}.Models;
namespace ${options.IServicsNamespace}.${options.SubNamespace}.I${options.SubNamespace}Service
{
/// <summary>
/// ${genTable.FunctionName}service接口
///
/// @author ${replaceDto.Author}
/// @date ${replaceDto.AddTime}
/// </summary>
public interface I${replaceDto.ModelTypeName}Service: IBaseService<${replaceDto.ModelTypeName}>
{
}
}