BaseLocationRel.cs 1.42 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;

namespace HHECS.Model.Entities
{
    /// <summary>
    /// 料点关系对应表
    /// </summary>
    [Table("base_location_rel")]
    [Serializable]
    public class BaseLocationRel : BaseEntityCU<int>
    {
        /// <summary>
        /// 
        /// </summary>
        [Column("keys")]
        public Guid Keys { get; set; }

        /// <summary>
        /// 任务起点工位
        /// </summary>
        [Column("startStationCode")]
        public string StartStationCode { get; set; }
        /// <summary>
        /// 任务终点工位
        /// </summary>
        [Column("endStationCode")]
        public string EndStationCode { get; set; }
        /// <summary>
        /// 任务起点编号
        /// </summary>
        [Column("startPositionCode")]
        public string StartPositionCode { get; set; }
        /// <summary>
        /// 任务终点编号
        /// </summary>
        [Column("endPositionCode")]
        public string EndPositionCode { get; set; }

        /// <summary>
        /// 料点关系类型,取起点
        /// </summary>
        [Column("endZoneCode")]
        public int EndZoneCode { get; set; }

        /// <summary>
        /// 料点关系类型,取起点
        /// </summary>
        [Column("startZoneCode")]
        public int StartZoneCode { get; set; }

    }
}