Blame view

netcore/src/Application/NCC.API/wwwroot/Template/IService.cs.vm 508 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  @if(Model.Type == 3)
  {
  @:using System.Threading.Tasks;
  @:
  }
  namespace NCC.@(@Model.NameSpace).Interfaces.@Model.ClassName
  {
      public interface I@(@Model.ClassName)Service
      {
  @if(Model.Type == 3)
  {
          @:/// <summary>
          @:/// 工作流表单操作
          @:/// </summary>
          @:/// <param name="id"></param>
          @:/// <param name="obj"></param>
          @:/// <param name="type"></param>
          @:/// <returns></returns>
          @:Task Save(string id,object obj,int type);
  }
      }
  }