using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(WorkingProcedure))] public class ExportWorkingProcedure { [Description("园区")] public string Park { get; set; } [Description("楼层")] public string Floor { get; set; } [Description("机种")] public string MachineType { get; set; } [Description("工段")] public string WorkshopSection { get; set; } [Description("作业内容")] public string AssignmentContent { get; set; } [Description("设备名称")] public string EquipmentName { get; set; } [Description("设备型号")] public string EquipmentModel { get; set; } [Description("稼动率")] public string EropTurnoverRate { get; set; } [Description("UPH")] public int UPH { get; set; } } }