tourismproorder.cs.svn-base

来自「走吧旅游网站前后台源代码」· SVN-BASE 代码 · 共 89 行

SVN-BASE
89
字号
using System;
namespace Maticsoft.Model
{
	/// <summary>
	/// 实体类TourismProOrder 。(属性说明自动提取数据库字段的描述信息)
	/// </summary>
	public class TourismProOrder
	{
		public TourismProOrder()
		{}
		#region Model
		private string _orderno;
		private string _name;
		private string _documentstype;
		private string _documentscode;
		private string _phone;
		private string _email;
		private string _pricetype;
		private decimal _price;
		/// <summary>
		/// 
		/// </summary>
		public string OrderNo
		{
			set{ _orderno=value;}
			get{return _orderno;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Name
		{
			set{ _name=value;}
			get{return _name;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string DocumentsType
		{
			set{ _documentstype=value;}
			get{return _documentstype;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string DocumentsCode
		{
			set{ _documentscode=value;}
			get{return _documentscode;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Phone
		{
			set{ _phone=value;}
			get{return _phone;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Email
		{
			set{ _email=value;}
			get{return _email;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Pricetype
		{
			set{ _pricetype=value;}
			get{return _pricetype;}
		}
		/// <summary>
		/// 
		/// </summary>
		public decimal Price
		{
			set{ _price=value;}
			get{return _price;}
		}
		#endregion Model

	}
}

⌨️ 快捷键说明

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