t_schedule.cs

来自「主要用C#写的代码」· CS 代码 · 共 73 行

CS
73
字号
using System;

using System.Text;

namespace BusinessRule.Table
{
	/// <summary>
	/// 创建Train表对应 的类。
	/// </summary>
	
		public class T_schedule
		{
			private string schedulecode;

			public string Schedulecode
			{
				get { return schedulecode; }
				set { schedulecode = value; }
			}
			private string fromcity;

			public string Fromcity
			{
				get { return fromcity; }
				set { fromcity = value; }
			}
			private string tocity;

			public string Tocity
			{
				get { return tocity; }
				set { tocity = value; }
			}
			private string leavetime;

			public string Leavetime
			{
				get { return leavetime; }
				set { leavetime = value; }
			}
			private string arrivaltime;

			public string Arrivaltime
			{
				get { return arrivaltime; }
				set { arrivaltime = value; }
			}
			private string traintype;

			public string Traintype
			{
				get { return traintype; }
				set { traintype = value; }
			}
			private string speed;

			public string Speed
			{
				get { return speed; }
				set { speed = value; }
			}
			private string distance;

			public string Distance
			{
				get { return distance; }
				set { distance = value; }
			}
        
		
	}
}

⌨️ 快捷键说明

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