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

namespace Coldairarrow.Util
{
    /// 
    /// 数据库所有表的信息
    /// 
    public class DbTableInfo
    {
        /// 
        /// 表名
        /// 
        public string TableName { get; set; }

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

        private string _description { get; set; }
    }
}

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