namespace Myshipping.Core.Service;
///
/// 数据库表列表参数
///
public class TableOutput
{
///
/// 表名(字母形式的)
///
public string TableName { get; set; }
///
/// 实体名称
///
public string EntityName { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
///
/// 更新时间
///
public string UpdateTime { get; set; }
///
/// 表名称描述(注释)(功能名)
///
public string TableComment { get; set; }
}