TBasePoint.cs 3.94 KB
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 
	/// </summary>
    [Table("t_base_point")]
    public partial class TBasePoint
    {
        public TBasePoint()
        {
        }

        /// <summary>
	    /// ID
	    /// </summary>
        [Column("ID")]
        public int? Id { get; set; }
        /// <summary>
	    /// 点区域类型
	    /// </summary>
        [Column("AreaType")]
        public string PointAreaType { get; set; }
        /// <summary>
	    /// RFID值
	    /// </summary>
        [Column("Barcode")]
        public string StrBarcode { get; set; }
        /// <summary>
	    /// X值
	    /// </summary>
        [Column("IntX")]
        public int? IntX { get; set; }
        /// <summary>
	    /// Y值
	    /// </summary>
        [Column("IntY")]
        public int? IntY { get; set; }
        /// <summary>
	    /// 是否选择X正方向
	    /// </summary>
        [Column("IsXpos")]
        public bool? IsXpos { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("XPosLength")]
        public int? XPosLength { get; set; }
        /// <summary>
	    /// 是否选择X负方向
	    /// </summary>
        [Column("IsXNeg")]
        public bool? IsXNeg { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("XNegLength")]
        public int? XNegLength { get; set; }
        /// <summary>
	    /// 是否选择Y正方向
	    /// </summary>
        [Column("IsYPos")]
        public bool? IsYPos { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("YPosLength")]
        public int? YPosLength { get; set; }
        /// <summary>
	    /// 是否选择Y负方向
	    /// </summary>
        [Column("IsYNeg")]
        public bool? IsYNeg { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("YNegLength")]
        public int? YNegLength { get; set; }
        /// <summary>
	    /// 启用
	    /// </summary>
        [Column("IsEnable")]
        public bool? IsEnable { get; set; }
        /// <summary>
	    /// 是否占用
	    /// </summary>
        [Column("IsOccupy")]
        public bool? IsOccupy { get; set; }
        /// <summary>
	    /// 占用AGV编号
	    /// </summary>
        [Column("OccupyAgvNo")]
        public string StrOccupyAgvNo { get; set; }
        /// <summary>
	    /// 点类型
	    /// </summary>
        [Column("PointType")]
        public int? PointType { get; set; }
        /// <summary>
	    /// X正方向距离
	    /// </summary>
        [Column("XLength")]
        public int? IntXLength { get; set; }
        /// <summary>
	    /// Y正方向距离
	    /// </summary>
        [Column("YLength")]
        public int? IntYLength { get; set; }
        /// <summary>
	    /// 车头方向
	    /// </summary>
        [Column("AgvOri")]
        public int? OriAgv { get; set; }
        /// <summary>
	    /// 转盘方向
	    /// </summary>
        [Column("DialOri")]
        public int? OriDial { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("PreBarcode")]
        public string StrPreBarcode { get; set; }
        /// <summary>
	    /// 限制区域名称
	    /// </summary>
        [Column("RegionName")]
        public string StrRegionName { get; set; }
        /// <summary>
	    /// 是否驻停
	    /// </summary>
        [Column("IsStop")]
        public bool? IsStop { get; set; }
        /// <summary>
	    /// 停止等级
	    /// </summary>
        [Column("StopLevel")]
        public int? IntStopLevel { get; set; }
        #region 注释
     //   /// <summary>
     //   /// 是否占用限制区域
     //   /// </summary>
     //   [Column("RegionApply")]
     //   public bool? IsRegionApply { get; set; }
     //   /// <summary>
	    ///// 占用限制区域AGV编号
	    ///// </summary>
     //   [Column("RegionApplyAgvNo")]
     //   public string StrRegionApplyAgvNo { get; set; }
        #endregion
    }
}