2021-09-08 18:12:08 +08:00
|
|
|
using System;
|
2021-11-30 21:33:34 +08:00
|
|
|
using ${options.ModelsNamespace}.Models;
|
2021-09-08 18:12:08 +08:00
|
|
|
|
2021-11-30 21:33:34 +08:00
|
|
|
namespace ${options.IServicsNamespace}.Business
|
2021-09-08 18:12:08 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-11-30 21:33:34 +08:00
|
|
|
/// ${genTable.FunctionName}service接口
|
2021-09-24 18:37:51 +08:00
|
|
|
///
|
2021-11-30 21:33:34 +08:00
|
|
|
/// @author ${replaceDto.Author}
|
|
|
|
|
/// @date ${replaceDto.AddTime}
|
2021-09-08 18:12:08 +08:00
|
|
|
/// </summary>
|
2021-11-30 21:33:34 +08:00
|
|
|
public interface I${replaceDto.ModelTypeName}Service: IBaseService<${replaceDto.ModelTypeName}>
|
2021-09-08 18:12:08 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|