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

📄 telcustomerinfo.cs

📁 汽车销售公司ERP进销存系统 汽车销售公司ERP进销存系统
💻 CS
字号:
using System;

namespace CallCenter.Modules
{
	/// <summary>
	/// 来电及对应的客户编号
	/// </summary>
	public class TelCustomerInfo
	{
		public TelCustomerInfo()
		{
			// 
			// TODO: 在此处添加构造函数逻辑
			//
		}

		private int _id;
		private int _cid;
		private string _telnumber;
		private int _position;		

		//序列
		public int id
		{
			get{return _id;}
			set{_id=value;}
		}
		//客户编号
		public int cid
		{
			get{return _cid;}
			set{_cid = value;}
		}
		//来电号码
		public string telnumber
		{
			get{return _telnumber;}
			set{_telnumber = value;}
		}
		//地理位置
		public int position
		{
			get{return _position;}
			set{_position = value;}
		}
	
		public override string ToString()
		{
			// TODO:  添加 Tel_Customer.ToString 实现
			return " id = "+this.id + " ; cid = "+this.cid+" ; telnumber = "+this.telnumber+" ; position ="+this.position;
		}
	}
}

⌨️ 快捷键说明

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