📄 t_schedule.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -