using Newtonsoft.Json; namespace Vo.Admin { /// /// 列表 /// public class GetDatabaseTableListVo { /// /// ID /// public int id { get; set; } /// /// 数据库 /// public int databaseId { get; set; } /// /// 表标题 /// public string tableTitle { get; set; } /// /// 表名 /// public string tableName { get; set; } /// /// 默认字段 /// public bool defaultField { get; set; } /// /// 导出功能 /// public bool exportModule { get; set; } /// /// 导入功能 /// public bool importModule { get; set; } /// /// 统计功能 /// public bool statModule { get; set; } /// /// 分表类型 /// public int splitKind { get; set; } } }