using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoadFlow.Model
{
///
/// 表字段实体
///
public class TableField
{
///
/// 字段名称
///
public string FieldName { get; set; }
///
/// 字段类型
///
public string Type { get; set; }
///
/// 长度
///
public int Size { get; set; }
///
/// 是否可为空
///
public bool IsNull { get; set; }
///
/// 是否有默认值
///
public bool IsDefault { get; set; }
///
/// 是否是自增
///
public bool IsIdentity { get; set; }
///
/// 默认值
///
public string DefaultValue { get; set; }
///
/// 字段说明
///
public string Comment { get; set; }
}
}