namespace Learun.Application.Base.SystemModule
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2017.03.04
/// 描 述:数据库表字段模型
///
public class DatabaseTableFieldModel
{
///
/// 序号
///
public int? f_number { get; set; }
///
/// 字段名称
///
public string f_column { get; set; }
///
/// 数据类型
///
public string f_datatype { get; set; }
///
/// 数据长度
///
public int? f_length { get; set; }
///
/// 允许空
///
public string f_isnullable { get; set; }
///
/// 标识
///
public string f_identity { get; set; }
///
/// 主键
///
public string f_key { get; set; }
///
/// 默认值
///
public string f_defaults { get; set; }
///
/// 说明
///
public string f_remark { get; set; }
}
}