DrawerPosition.cs 1.0 KB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace OnlineStore.LoadCSVLibrary
{
    /// <summary>
    /// 抽屉配置信息
    /// </summary>
    public class DrawerPosition:PositionBase
    {
        /// <summary>
        /// 对应的料仓ID(流水线料仓需要用此字段区分哪个BOX)
        /// </summary>
        [CSVAttribute("料仓ID")]
        public int StoreId { get; set; }
        /// <summary>
        ///  X坐标
        /// </summary>
        [CSVAttribute("X坐标")]
        public double X { get; set; }
        /// <summary>
        ///  Y坐标
        /// </summary>
        [CSVAttribute("Y坐标")]
        public double Y { get; set; }
        /// <summary>
        ///  X方向误差范围
        /// </summary>
        [CSVAttribute("X方向误差范围")]
        public string X_Error { get; set; }
        /// <summary>
        ///  Y方向误差范围
        /// </summary>
        [CSVAttribute("Y方向误差范围")]
        public string Y_Error { get; set; }

    }
}