using OpenAuth.Repository.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.CodeTable.Response { public class CodeTableColumnsResp { /// db_codetable(数据库表信息)表的实体 /// public DbCodeTable db_codetable { get; set; } /// db_codecolumns(数据库表字段信息)表的实体 /// public List db_codecolumnsList { get; set; } } }