using System; using System.Collections.Generic; namespace MJTop.Data { /// /// 表信息 /// [Serializable] public class TableInfo { /// /// 表名称 /// public string TableName { get; set; } /// /// 表描述 /// public string TabComment { get; set; } /// /// 该表包含的所有列 /// public List Colnumns { get; set; } /// /// 主键列名 /// public string PriKeyColName { get; set; } /// /// 主键类型 /// public PrimaryKeyType PriKeyType { get; set; } } }