ShelfPosition.cs
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OnlineStore.LoadCSVLibrary
{
public class ShelfPosition:PostionBase
{
/// <summary>
/// 对应的料仓ID(流水线料仓需要用此字段区分哪个BOX)
/// </summary>
[CSVAttribute("料仓ID")]
public int StoreId { get; set; }
/// <summary>
/// 旋转轴位置PA
/// </summary>
[CSVAttribute("旋转轴位置PA")]
public int MiddleAxis_PA{ get; set; }
/// <summary>
/// 升降轴低点PA1
/// </summary>
[CSVAttribute("升降轴低点PA1")]
public int UpDownAxis_LPA1 { get; set; }
/// <summary>
/// 升降轴高点PA2
/// /// </summary>
[CSVAttribute("升降轴高点PA2")]
public int UpDownAxis_HPA2{ get; set; }
/// <summary>
/// 进出轴位置PA
/// </summary>
[CSVAttribute("进出轴位置PA")]
public int InoutAxis_PA { get; set; }
}
}