123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- using AutoMapper;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(MachineChange))]
- public class ExportMachineChange
- {
- [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("设备ID")]
- public string MacCode { get; set; }
- [Description("机台编号")]
- public string MacNum { get; set; }
- [Description("开始时间")]
- public DateTime STime { get; set; }
- [Description("原机种")]
- public string PreRecipe { get; set; }
- [Description("改机机种")]
- public string CurentRecipe { get; set; }
- [Description("完成时间")]
- public DateTime ETime { get; set; }
- [Description("改机用时")]
- public double Time { get; set; }
- [Description("标准用时")]
- public double StandardTime { get; set; }
- [Description("超出用时")]
- public double ExtraTime { get; set; }
- [Description("改机人工号")]
- public string RecCode { get; set; }
- [Description("改机人姓名")]
- public string Name { get; set; }
- }
- }
|