16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
using System;
|
|
using {ModelsNamespace}.Models;
|
|
|
|
namespace {IServicsNamespace}.Business
|
|
{
|
|
/// <summary>
|
|
/// {FunctionName}service接口
|
|
///
|
|
/// @author {Author}
|
|
/// @date {DateTime}
|
|
/// </summary>
|
|
public interface I{ModelTypeName}Service: IBaseService<{ModelTypeName}>
|
|
{
|
|
}
|
|
}
|