LASAPlatform/OpenAuth.App/BaseApp/CodeTable/Response/CodeTableColumnsResp.cs

20 lines
558 B
C#

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
{
/// <summary>db_codetable(数据库表信息)表的实体
/// </summary>
public DbCodeTable db_codetable { get; set; }
/// <summary>db_codecolumns(数据库表字段信息)表的实体
/// </summary>
public List<DbCodeColumns> db_codecolumnsList { get; set; }
}
}