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 ExportParameters { [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("postbond offset X(um)")] public double x { get; set; } [Description("postbond offset Y(um)")] public double y { get; set; } [Description("postbond offset T(°)")] public double t { get; set; } [Description("主点胶压力值MDP(KPa)")] public double mdp { get; set; } [Description("副点胶压力值ADP(KPa)")] public double adp { get; set; } } }