companymessage.cs

来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 121 行

CS
121
字号
using System;

namespace HouseBE
{
	/// <summary>
	/// CompanyMessage 实体 公司信息表。
	/// </summary>
	public class CompanyMessage
	{
		private string _CompanyName;
		private string _CompanyAddress;
		private string _CompanyEmail;
		private string _CompanyTelphone;
		private string _CompanyNet;
		private string _Corporation;
		private string _Fax;
		private int _Employees;
		private string _Remark;

		public string CompanyName
		{
			set
			{
			 this._CompanyName=value;
			}
			get
			{
			 return this._CompanyName;
			}
		}
		public string CompanyAddress
		{
			set
			{
			  this._CompanyAddress=value;
			}
			get
			{
			  return this._CompanyAddress;
			}
		}
		public string CompanyEmail
		{
			set
			{
			 this._CompanyEmail=value;
			}
			get
			{
			 return this._CompanyEmail;
			}
		}
		public string CompanyTelphone
		{
			set
			{
			 this._CompanyTelphone=value;
			}
			get
			{
			 return this._CompanyTelphone;
			}
		}
		public string CompanyNet
		{
			set
			{
			  this._CompanyNet=value;
			}
			get
			{
			 return this._CompanyNet;
			}
		}
		public string Corporation
		{
			set
			{
			 this._Corporation=value;
			}
			get
			{
			 return this._Corporation;
			}
		}
		public string Fax
		{
			set
			{
	          this._Fax=value;
			}
			get
			{
			  return this._Fax;
			}
		}
		public int Employees
		{
			set
			{
			  this._Employees=value;
			}
			get
			{
				return this._Employees;
			}
		}
		public string Remark
		{
			set
			{
				this._Remark=value;
			}
			get
			{
			 return this._Remark;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?