You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
558 B
C#
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; }
|
|
}
|
|
}
|