⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deputyinfo.cs

📁 某个公司需要维持良好的客户关系
💻 CS
字号:
using System;

namespace CRM.Model
{
	/// <summary>
	/// 联系人信息业务实体
	/// </summary>
	[Serializable]
	public class DeputyInfo
	{
		private string _deputyId;		//联系人编号
		private string _trueName;		//联系人名称
		private string _sex;			//性别
		private string _birthday;		//生日
		private string _phone;			//联系电话
		private string _mobilePhone;	//手机
		private string _address;		//联系地址
		private string _postCode;		//邮编
		private string _email;			//电子邮箱
		private string _customerId;		//客户信息
		private string _bz;				//备注

		public DeputyInfo()
		{
			
		}

		public string DeputyId
		{
			get{return _deputyId;}
			set{_deputyId = value;}
		}

		public string TrueName
		{
			get{return _trueName;}	
			set{_trueName = value;}
		}

		public string Sex
		{
			get{return _sex;}
			set{_sex=value;}
		}
		public string Birthday
		{
			get{return _birthday;}
			set{_birthday=value;}
		}
		public string Phone
		{
			get{return _phone;}
			set{_phone=value;}
		}
		public string MobilePhone
		{
			get{return _mobilePhone;}
			set{_mobilePhone=value;}
		}

		public string Address
		{
			get{return _address;}
			set{_address=value;}
		}
		public string PostCode
		{
			get{return _postCode;}
			set{_postCode=value;}
		}
		
		public string Email
		{
			get{return _email;}
			set{_email=value;}
		}
		public string CustomerId
		{
			get{return _customerId;}
			set{_customerId=value;}
		}
		public string BZ
		{
			get{return _bz;}
			set{_bz=value;}
		}
	}
}

⌨️ 快捷键说明

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