using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(AaParametersInfo))] public class ExportAAParameters { [Description("园区")] public string Factory { get; set; } [Description("厂房")] public string Plant { get; set; } [Description("楼层")] public string Floor { get; set; } [Description("设备ID")] public string FCode { get; set; } [Description("机种")] public string Type { get; set; } [Description("画胶气压-1")] public double EW1_DspPressure { get; set; } [Description("画胶气压-2")] public double EW2_DspPressure { get; set; } [Description("画胶气压-3")] public double EW3_DspPressure { get; set; } [Description("画胶气压-4")] public double EW4_DspPressure { get; set; } [Description("采集时间")] public DateTime RecTime { get; set; } } }