123456789101112131415161718192021222324252627282930313233 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(LHAParametersnew))]
- public class ExportLHAParametersnew
- {
- [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("画胶压力DS3")]
- public double EW1_DspPressure { get; set; }
- [Description("画胶压力DS4")]
- public double EW2_DspPressure { get; set; }
- [Description("画胶副压力DS1")]
- public double AEW1_DspPressure { get; set; }
- [Description("画胶副压力DS2")]
- public double AEW2_DspPressure { get; set; }
- [Description("采集时间")]
- public DateTime RecTime { get; set; }
- }
- }
|