123456789101112131415161718192021222324252627282930313233343536 |
- using AutoMapper;
- using DllEapEntity.OFILM;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(PostbondviewDto))]
- public class ExportPostbondviewDtocs
- {
-
- [Description ("设备ID")]
- public string MacCode { get; set; }
- [Description ("时间")]
- public DateTime Time { get; set; }
- [Description ("机种")]
- public string Recipe { get; set; }
- [Description("工序")]
- public string FCode { get; set; }
- [Description("OffsetX")]
- public double OffsetX { get; set; }
- [Description("X稼动极差")]
- public double Diff_X { get; set; }
- [Description("OffsetY")]
- public double OffsetY { get; set; }
- [Description("Y稼动极差")]
- public double Diff_Y { get; set; }
- [Description("旋转角度T")]
- public double OffsetT { get; set; }
- [Description("T稼动极差")]
- public double Diff_T { get; set; }
-
- }
- }
|