123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using AutoMapper;
- using DllEapEntity.OFILM;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(Sample))]
- public class ExportDaSampl
- {
- [Description("设备ID")]
- public string macCode { get; set; }
- [Description("机台编号")]
- public string macNum { get; set; }
- [Description("园区")]
- public string factory { get; set; }
- [Description("厂房")]
- public string plant { get; set; }
- [Description("楼层")]
- public string floor { get; set; }
- [Description("工序")]
- public string pCode { get; set; }
- [Description("机种")]
- public string type { get; set; }
- [Description("时间")]
- public DateTime time { get; set; }
- [Description("X点检值")]
- public double x { get; set; }
- [Description("Y点检值")]
- public double y { get; set; }
- [Description("T点检值")]
- public double t { get; set; }
- [Description("X实际值")]
- public double sXOffset { get; set; }
- [Description("Y实际值")]
- public double sYOffset { get; set; }
- [Description("T实际值")]
- public double sTOffset { get; set; }
- [Description("X预警线")]
- public string wXOffset { get; set; }
- [Description("Y预警线")]
- public string wYOffset { get; set; }
- [Description("T预警线")]
- public string wTOffset { get; set; }
- [Description("X异常线")]
- public string aXOffset { get; set; }
- [Description("Y异常线")]
- public string aYOffset { get; set; }
- [Description("T异常线")]
- public string aTOffset { get; set; }
- [Description("结果")]
- public string result { get; set; }
-
- [Description("姓名")]
- public string name { get; set; }
-
- }
- }
|