///*************************************************************************/ ///* ///* 文件名 :ColoumnProperty.cs ///* ///* 程序说明 : 字段属性,一个简单的实体类 ///* 原创作者 :孙中吕 ///* ///* Copyright 2006-2021 C/S框架网 www.csframework.com ///* ///**************************************************************************/ namespace CSFrameworkV5.Core.CodeGenerator { /// /// 字段属性 /// public class ColumnProperty { private string _columnName; private bool _isPrimaryKey; /// /// 字段名 /// public string ColumnName { get => _columnName; set => _columnName = value; } /// /// 是否主键 /// public bool IsPrimaryKey { get => _isPrimaryKey; set => _isPrimaryKey = value; } /// /// 构造器 /// /// 字段名 /// 是否主键 public ColumnProperty(string columnName, bool isPrimaryKey) { _columnName = columnName; _isPrimaryKey = isPrimaryKey; } } }