using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YiSha.Model.Result.SystemManage { public class TableInfo { /// /// 表的Id /// public long Id { get; set; } /// /// 表名 /// public string TableName { get; set; } /// /// 主键名 /// public string TableKeyName { get; set; } /// /// 主键 /// public string TableKey { get; set; } /// /// 记录数 /// public int TableCount { get; set; } /// /// 备注 /// public string Remark { get; set; } } }