2017dal.cmt 616 B

12345678910111213141516171819
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
  6. #>
  7. <# if( host.TableDescription.Length > 0) {#>
  8. //<#= host.TableDescription #>
  9. <# } #>
  10. public partial class <#= host.GetModelClass(host.TableName) #> : SQLHelper.SQLBasisOperation<LoginModel.<#= host.GetModelClass(host.TableName) #>>
  11. {
  12. public <#= host.GetModelClass(host.TableName) #>(SQLHelper.ConnectionParameters connectionArgument)
  13. {
  14. base.ConnectionArguments = connectionArgument;
  15. }
  16. }