TaskPathModel.cs 1018 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 任务路径
	/// </summary>
    public partial class TaskPathModel
    {
        /// <summary>
        /// "序号,int,
        /// </summary>
        public int SerialNo { get; set; }
        /// <summary>
	    /// "RFID值,string(20),
	    /// </summary>
        public string strBarcode { get; set; }
        /// <summary>
	    /// "X坐标,int
	    /// </summary>
        public int intX { get; set; }
        /// <summary>
        /// "Y坐标,int
        /// </summary>
        public int intY { get; set; }
        /// <summary>
        /// "int,1为X正;2为Y正;3为X负;4为Y负;0为终点
        /// </summary>
        public int pathDriection { get; set; }
        
        public TaskPathModel()
        {
            SerialNo = 0;
            intX = 0;
            intY = 0;
            pathDriection = 0;
        }
    }
}