namespace Myshipping.Core.Service;
///
/// 数据库表列
///
public class TableColumnOuput
{
///
/// 字段名
///
public string ColumnName { get; set; }
///
/// 数据库中类型
///
public string DataType { get; set; }
///
/// .NET字段类型
///
public string NetType { get; set; }
///
/// 字段描述
///
public string ColumnComment { get; set; }
///
/// 主外键
///
public string ColumnKey { get; set; }
}