TBaseStation.cs 2.05 KB
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 
	/// </summary>
    [Table("t_base_station")]
    public partial class TBaseStation : IdEntity
    {
        public TBaseStation()
        {
        }

        /// <summary>
        /// 唯一编号
        /// </summary>
        [Column("ID")]
        public new long? Id { get; set; }
        /// <summary>
	    /// 站台类型
	    /// </summary>
        [Column("StationType")]
        public int? StationType { get; set; }
        /// <summary>
	    /// 站台区域
	    /// </summary>
        [Column("Area")]
        public string StationArea { get; set; }
        /// <summary>
        /// 站台所属组
        /// </summary>
        [Column("Group")]
        public string StationGroup { get; set; }
        /// <summary>
	    /// 站台方向
	    /// </summary>
        [Column("StationOri")]
        public int? StationOri { get; set; }
        /// <summary>
	    /// 站台距离
	    /// </summary>
        [Column("Length")]
        public int? StationLength { get; set; }
        /// <summary>
	    /// 是否启用
	    /// </summary>
        [Column("IsEnable")]
        public bool? IsEnable { get; set; }
        /// <summary>
	    /// 是否锁定
	    /// </summary>
        [Column("IsLocked")]
        public bool? IsLocked { get; set; }
        /// <summary>
	    /// 站台码值
	    /// </summary>
        [Column("Barcode")]
        public string StrBarcode { get; set; }
        /// <summary>
	    /// 站台附属点
	    /// </summary>
        [Column("PreBarcode")]
        public string StrPreBarcode { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("Name")]
        public string StrStationNo { get; set; }
        /// <summary>
        /// 站台状态
        /// </summary>
        [Column("StationState")]
        public int? StationState { get; set; }

        /// <summary>
        /// 站台防撞
        /// </summary>
        [Column("Tim")]
        public int? StationTim { get; set; }
    }
}