CarReelPostion.cs
671 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OnlineStore.LoadCSVLibrary
{
public class StringPostion :StorePostionBase
{
/// <summary>
/// 上料X轴
/// </summary>
[CSVAttribute("上料X轴"),Editable(1)]
public int X_P2 { get; set; }
/// <summary>
/// 上料Y轴
/// </summary>
[CSVAttribute("上料Y轴"), Editable(2)]
public int Y_P2 { get; set; }
/// <summary>
/// 上料Z轴
/// </summary>
[CSVAttribute("上料Z轴"), Editable(3)]
public int Z_P2 { get; set; }
}
}