ExportMaterialRejectDto.cs 901 B

12345678910111213141516171819202122232425262728293031
  1. using AutoMapper;
  2. using DllEapEntity.OFILM;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Text;
  7. namespace DllEapEntity.Dtos
  8. {
  9. [AutoMap (typeof(MaterialRejectDto))]
  10. public class ExportMaterialRejectDto
  11. {
  12. [Description ("机种")]
  13. public string FKey { get; set; }
  14. [Description("OutPut")]
  15. public int Output { get; set; }
  16. [Description("IutPut")]
  17. public int LenInput { get; set; }
  18. [Description("抛料")]
  19. public int LenReject { get; set; }
  20. [Description("抛料率")]
  21. public string LenRejectPercent { get; set; }
  22. [Description("IutPut")]
  23. public int SensorInput { get; set; }
  24. [Description("抛料")]
  25. public int SensorReject { get; set; }
  26. [Description("抛料率")]
  27. public string SensorRejectPercent { get; set; }
  28. }
  29. }