MachineProcessPSEPD.cs 642 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Models
  6. {
  7. [Table("MachineProcessPSEPDs")]
  8. public class MachineProcessPSEPD : Base
  9. {
  10. public string MachineId { get; set; }
  11. public DateTime DataTime { get; set; }
  12. public int No { get; set; }
  13. public int EPD二次撕膜数 { get; set; }
  14. public int EPD撕膜NG数 { get; set; }
  15. public int EPD撕膜成功率 { get; set; }
  16. public int EPD撕膜数 { get; set; }
  17. public int EPD一次撕膜数 { get; set; }
  18. }
  19. }