17 lines
435 B
Plaintext
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}>
|
|
{
|
|
}
|
|
}
|