namespace CSFramework.DB.Models
|
{
|
public class MetaTableStructure
|
{
|
public string TableName { get; set; }
|
|
public string TableDesc { get; set; }
|
|
public string FieldOrder { get; set; }
|
|
public string FieldName { get; set; }
|
|
public string IsIdentity { get; set; }
|
|
public string PK { get; set; }
|
|
public string FK { get; set; }
|
|
public string IDX { get; set; }
|
|
public string FieldType { get; set; }
|
|
public string FieldLength { get; set; }
|
|
public string Prec { get; set; }
|
|
public string Scale { get; set; }
|
|
public string AllowNull { get; set; }
|
|
public string DefaultValue { get; set; }
|
|
public string FieldCaption { get; set; }
|
}
|
}
|