12345678910111213141516171819 |
- <#@ template language="c#" HostSpecific="True" #>
- <#@ output extension= ".cs" #>
- <#
- TableHost host = (TableHost)(Host);
- host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
- #>
- <# if( host.TableDescription.Length > 0) {#>
- //<#= host.TableDescription #>
- <# } #>
- public partial class <#= host.GetModelClass(host.TableName) #> : SQLHelper.SQLBasisOperation<LoginModel.<#= host.GetModelClass(host.TableName) #>>
- {
-
- public <#= host.GetModelClass(host.TableName) #>(SQLHelper.ConnectionParameters connectionArgument)
- {
- base.ConnectionArguments = connectionArgument;
- }
-
- }
|