MachineProcessPS.cs 857 B

123456789101112131415161718192021222324
  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("MachineProcessPSs")]
  8. public class MachineProcessPS : Base
  9. {
  10. public string MachineId { get; set; }
  11. public DateTime DataTime { get; set; }
  12. public int No { get; set; }
  13. public int PS本体撕落抛料数 { get; set; }
  14. public int PS放反抛料数 { get; set; }
  15. public int PS拍照NG抛料数 { get; set; }
  16. public int PS生产总数 { get; set; }
  17. public int PS撕膜NG抛料数 { get; set; }
  18. public int PS撕膜成功率 { get; set; }
  19. public int PS撕膜总数 { get; set; }
  20. public int PS贴附精度NG数 { get; set; }
  21. public int PS真空异常抛料数 { get; set; }
  22. }
  23. }