StationToStation.cs
587 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 站台表
/// </summary>
[Table("stationToStation")]
public partial class StationToStation : SysEntity
{
public StationToStation()
{
}
/// <summary>
/// 起始站台
/// </summary>
[Column("startStation")]
public string StartStation { get; set; }
/// <summary>
/// 终点站台
/// </summary>
[Column("endStation")]
public string EndStation { get; set; }
}
}