1234567891011121314151617181920212223242526272829 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(AnalysisDto))]
- public class ExportMachineAlarmDto
- {
- [Description("园区")]
- public string FactoryName { get; set; }
- [Description("厂房")]
- public string PlantName { get; set; }
- [Description("楼层")]
- public string FloorName { get; set; }
- [Description("制程代码")]
- public string pcode { get; set; }
- [Description("设备类型")]
- public string macmodel { get; set; }
- [Description("设备编号")]
- public string name { get; set; }
- [Description("机台编号")]
- public string macnumber { get; set; }
- [Description("报警次数")]
- public int count { get; set; }
- }
- }
|