LabellingPostion.cs 1.0 KB
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; }
    }
}