namespace iWare.Wms.Application
{
///
/// 数据库表列表参数
///
public class TableOutput
{
///
/// 库名(字母形式的)
///
public string DatabaseName { get; set; }
///
/// 库名称描述(注释)(功能名)
///
public string DatabaseComment { get; set; }
///
/// 表名(字母形式的)
///
public string TableName { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
///
/// 更新时间
///
public string UpdateTime { get; set; }
///
/// 表名称描述(注释)(功能名)
///
public string TableComment { get; set; }
}
}