LabellingPostion.cs
1.0 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OnlineStore.LoadCSVLibrary
{
public class LabellingPostion : StorePostionBase
{
/// <summary>
/// X轴基准点
/// </summary>
[CSVAttribute("X轴基准点"), Editable(9)]
public int X_Base { get; set; }
/// <summary>
/// Y轴基准点
/// </summary>
[CSVAttribute("Y轴基准点"), Editable(8)]
public int Y_Base { get; set; }
/// <summary>
/// Z轴贴标高点P4
/// </summary>
[CSVAttribute("Z轴贴标高点P4"), Editable(10)]
public int Label_Z_P4 { get; set; }
/// <summary>
/// Z轴贴标点P5
/// </summary>
[CSVAttribute("Z轴贴标点P5"), Editable(10)]
public int Label_Z_P5 { get; set; }
/// <summary>
/// R轴偏转
/// </summary>
[CSVAttribute("R轴偏转"), Editable(11)]
public double Label_R_Offset_Angle { get; set; }
}
}