12345678910111213141516171819202122232425262728293031 |
- using AutoMapper;
- using DllEapEntity.OFILM;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap (typeof(MaterialRejectDto))]
- public class ExportMaterialRejectDto
- {
- [Description ("机种")]
- public string FKey { get; set; }
- [Description("OutPut")]
- public int Output { get; set; }
- [Description("IutPut")]
- public int LenInput { get; set; }
- [Description("抛料")]
- public int LenReject { get; set; }
- [Description("抛料率")]
- public string LenRejectPercent { get; set; }
- [Description("IutPut")]
- public int SensorInput { get; set; }
- [Description("抛料")]
- public int SensorReject { get; set; }
- [Description("抛料率")]
- public string SensorRejectPercent { get; set; }
- }
- }
|