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

📄 carkuinfo.cs

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

namespace CallCenter.Modules
{
	/// <summary>
	/// CarkuInfo 的摘要说明。
	/// </summary>
	public class CarkuInfo
	{
		public CarkuInfo()
		{
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}
		private string _ccbh;
		private string _state;
		private string _ys;
		private string _pp;
		private string _clxz;
		private string _ggxh;
		private string _fdjxh;
		private string _fdjhm;
		private DateTime _xxrq;
		private string _scdw;
		private DateTime _rkrq;
		private string _bz;

		public string ccbh
		{
			get{return _ccbh;}
			set{_ccbh = value;}
		}

		public string state
		{
			get{return _state;}
			set{_state = value;}
		}

		public string ys
		{
			get{return _ys==null?"":_ys;}
			set{_ys = value;}
		}

		public string pp
		{
			get{return _pp==null?"":_pp;}
			set{_pp = value;}
		}

		public string clxz
		{
			get{return _clxz==null?"":_clxz;}
			set{_clxz = value;}
		}

		public string  ggxh
		{
			get{return _ggxh==null?"":_ggxh;}
			set{_ggxh = value;}
		}

		public string fdjxh
		{
			get{return _fdjxh==null?"":_fdjxh;}
			set{_fdjxh = value;}
		}

		public string fdjhm
		{
			get{return _fdjhm==null?"":_fdjhm;}
			set{_fdjhm = value;}
		}

		public DateTime xxrq
		{
			get{return _xxrq;}
			set{_xxrq = value;}
		}

		public string scdw
		{
			get{return _scdw==null?"":_scdw;}
			set{_scdw = value;}
		}

		public DateTime rkrq
		{
			get{return _rkrq;}
			set{_rkrq = value;}
		}

		public string bz
		{
			get{return _bz==null?"":_bz;}
			set{_bz = value;}
		}

			
		public override string ToString()
		{
			// TODO:  添加 CustomerInfo.ToString 实现
			return "ccbh = "+this.ccbh+" ; ys = "+this.ys+" ; pp = "+this.pp+" ; clxz = "+this.clxz+" ; ggxh = "+this.ggxh
				+" ; fdjxh = "+this.fdjxh+" ; fdjhm = "+this.fdjhm+" ; xxrq = "+this.xxrq+" ; scdw ="+this.scdw+" ; rkrq = "+this.rkrq+
				" ; bz="+this.bz;
		}
	}
}

⌨️ 快捷键说明

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