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

📄 spservicenoteinfo.cs

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

namespace CallCenter.Modules
{
	/// <summary>
	/// 服务商服务记录
	/// </summary>
	public class SPServiceNoteInfo
	{
		public SPServiceNoteInfo()
		{
			// 
			// TODO: 在此处添加构造函数逻辑
			//
		}

		private int _id;
		private int _sid;
		private string _sname;
		private int _wbid;
		private string _sdate;
		private int _cid;
		private string _cname;
		private string _scontent;
		private int _grade;
		private string _comment;

		private string _gshow;

		public int id
		{
			set{_id = value;}
			get{return _id;}
		}

		public int sid
		{
			set{_sid = value;}
			get{return _sid;}
		}

		public string sname
		{
			set{_sname = value;}
			get{return _sname==null?"":_sname;}
		}

		public int wbid
		{
			set{_wbid = value;}
			get{return _wbid;}
		}

		public string sdate
		{
			set{_sdate = value;}
			get{return _sdate==null?"":_sdate;}
		}

		public int cid
		{
			set{_cid = value;}
			get{return _cid;}
		}

		public string cname
		{
			set{_cname = value;}
			get{return _cname==null?"":_cname;}
		}

		public string scontent
		{
			set{_scontent = value;}
			get{return _scontent==null?"":_scontent;}
		}

		public int grade
		{
			set{_grade = value;}
			get{return _grade;}
		}

		public string comment
		{
			set{_comment = value;}
			get{return _comment==null?"":_comment;}
		}

		public string gshow
		{
			set{_gshow = value;}
			get{return _gshow==null?"":_gshow;}
		}
	
		public override string ToString()
		{
			// TODO:  添加 SPServiceNoteInfo.ToString 实现
			return "id ="+this.id+" ; sid ="+this.sid+" ; sname="+this.sname+" ; wbid="+this.wbid+
				" ; sdate="+this.sdate+" ; cid="+this.cid+" ; cname="+this.cname+
				" ; scontent="+this.scontent+" ; grade="+this.grade+" ; comment="+this.comment+
				" ; show="+this.gshow;
		
		}
	}
}

⌨️ 快捷键说明

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