t_schedule_detail.cs

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

CS
73
字号
using System;

using System.Text;

namespace BusinessRule.Tables
{
	/// <summary>
	/// Train1 的摘要说明。
	/// </summary>

		public class T_schedule_detail
		{
			private int cid;

			public int Cid
			{
				get { return cid; }
				set { cid = value; }
			}
			
			private string schedulecode;

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

			public string Cityname
			{
				get { return cityname; }
				set { cityname = value; }
			}
			private string arrivaltime;

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

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

			public int Numofschedule
			{
				get { return numofschedule; }
				set { numofschedule = value; }
			}
			private int distance;

			public int Distance
			{
				get { return distance; }
				set { distance = value; }
			}
			private int days;

			public int Days
			{
				get { return days; }
				set { days = value; }
			}
		}
	
}

⌨️ 快捷键说明

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