namespace MiaoYu.Core.CodeGenerator.Models;
///
/// 数据库列信息(从数据库元数据查询)
///
public class DbColumnInfo
{
///
/// 列名
///
public string? Name { get; set; }
///
/// 数据库类型
///
public string? DbType { get; set; }
///
/// C# 类型
///
public string? CsType { get; set; }
///
/// 是否主键
///
public bool IsPrimary { get; set; }
///
/// 是否自增
///
public bool IsIdentity { get; set; }
///
/// 是否可为空
///
public bool IsNullable { get; set; }
///
/// 最大长度
///
public int? MaxLength { get; set; }
///
/// 列位置
///
public int Position { get; set; }
///
/// 列注释
///
public string? Comment { get; set; }
}