Files
shgx_tz_mes_backend_sync/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/IServiceTemplate.txt

13 lines
260 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>
/// 定义{TableNameDesc}服务接口
/// </summary>
public interface I{ModelTypeName}Service: IBaseService<{ModelTypeName}>
{
}
}