using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace DocTools.Dtos
{
///
/// 数据库表dto
///
[Serializable]
public class TableDto
{
///
/// 序号
///
[Display(Name = "序号")]
public string TableOrder { get; set; }
///
/// 表名
///
[Display(Name = "表名")]
public string TableName { get; set; }
///
/// 注释
///
[Display(Name = "表说明")]
public string Comment { get; set; }
///
/// 数据库类型
///
[Display(Name = "数据库类型")]
public string DBType { get; set; }
///
/// 表格列集合
///
[Display(Name = "列数据")]
public List Columns { get; set; }
}
}