123456789101112131415161718192021222324252627282930313233 |
- <#@ template language="c#" HostSpecific="True" #>
- <#@ output extension= ".cs" #>
- <#
- TableHost host = (TableHost)(Host);
- host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
- #>
- using System;
- using System.Text;
- using System.Collections.Generic;
- using System.Data;
- namespace <#= host.NameSpace #>.Model<# if( host.Folder.Length > 0) {#>.<#= host.Folder #><# } #>
- {
- <# if( host.TableDescription.Length > 0) {#>
- //<#= host.TableDescription #>
- <# } #>
- public class <#= host.GetModelClass(host.TableName) #>
- {
-
- <# foreach (ColumnInfo c in host.Fieldlist)
- { #>/// <summary>
- /// <#= string.IsNullOrEmpty(c.Description) ? c.ColumnName : c.Description #>
- /// </summary>
- private <#= CodeCommon.DbTypeToCS(c.TypeName) #> _<#= c.ColumnName.ToString().ToLower() #>;
- public <#= CodeCommon.DbTypeToCS(c.TypeName) #> <#= c.ColumnName #>
- {
- get{ return _<#= c.ColumnName.ToString().ToLower()#>; }
- set{ _<#= c.ColumnName.ToString().ToLower() #> = value; }
- }
- <# } #>
-
- }
- }
|