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

📄 customertypeinfo.cs

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

namespace CRM.Model
{
	/// <summary>
	/// 客户类型信息业务实体
	/// </summary>
	[Serializable]
	public class CustomerTypeInfo
	{
		private string _typeId;		//客户类型编号
		private string _typeName;	//客户类型名称
		private string _bz;			//备注

		public CustomerTypeInfo()
		{
			
		}

		public string TypeId
		{
			get{return _typeId;}
			set{_typeId = value;}
		}

		public string TypeName
		{
			get{return _typeName;}	
			set{_typeName = value;}
		}

		public string BZ
		{
			get{return _bz;}
			set{_bz=value;}
		}
	}
}

⌨️ 快捷键说明

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