(精华)2020年6月26日 C#类库model TableInfo

namespace Coldairarrow.Util
{
    /// 
    /// 数据库表信息
    /// 
    public class TableInfo
    {
        /// 
        /// 字段Id
        /// 
        public int ColumnId { get; set; }

        /// 
        /// 字段名
        /// 
        public string Name { get; set; }

        /// 
        /// 字段类型
        /// 
        public string Type { get; set; }

        /// 
        /// 是否为主键
        /// 
        public bool IsKey { get; set; }

        /// 
        /// 是否为空
        /// 
        public bool IsNullable { get; set; }

        /// 
        /// 字段描述说明
        /// 
        public string Description
        {
            get
            {
                return _description.IsNullOrEmpty() ? Name : _description;
            }
            set
            {
                _description = value;
            }
        }

        private string _description { get; set; }
    }
}

你可能感兴趣的:(#,C#类库model)