Blame view

netcore/src/Application/NCC.API/wwwroot/Template/UpInput.cs.vm 524 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  using System;
  using System.Collections.Generic;
  
  namespace NCC.@(@Model.NameSpace).Entitys.Dto.@Model.ClassName
  {
      /// <summary>
      /// @(@Model.BusName)更新输入参数
      /// </summary>
      public class @(@Model.MainTable)UpInput : @(@Model.ClassName)CrInput
      {
  @foreach (var column in Model.TableField){
  if (@column.PrimaryKey){
          @:/// <summary>
          @:/// @column.ColumnComment
          @:/// </summary>
          @:public @column.NetType @column.LowerColumnName { get; set; }
          @:
  }
  }
      }
  }