16 lines
312 B
Plaintext
Raw Normal View History

using System;
2021-09-10 22:15:01 +08:00
using {ModelsNamespace}.Models;
2021-09-10 18:06:07 +08:00
namespace {IServicsNamespace}.Business
{
/// <summary>
/// {FunctionName}service接口
///
/// @author {Author}
/// @date {DateTime}
/// </summary>
public interface I{ModelTypeName}Service: IBaseService<{ModelTypeName}>
{
}
}