using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetPriQueryTableQueryVo { /// /// ID /// public int id { get; set; } /// /// 查询表 /// public string tableEnName { get; set; } /// /// 说明 /// public string summary { get; set; } /// /// 项目 /// public int projectId { get; set; } /// /// 查询库 /// public int databaseId { get; set; } /// /// 起始数据 /// public bool startDataFlag { get; set; } /// /// 每次读取数量 /// public int stepCount { get; set; } /// /// 排序 /// public string orderBy { get; set; } /// /// 自定义sql查询 /// public string customSql { get; set; } } }