MachineProcessBT.cs 646 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("MachineProcessBTs")]
  8. public class MachineProcessBT : Base
  9. {
  10. public string MachineId { get; set; }
  11. public DateTime DataTime { get; set; }
  12. public int No { get; set; }
  13. public int BTAOI检测NG数 { get; set; }
  14. public int BTAOI检查成功率 { get; set; }
  15. public int BT贴附对位NG数 { get; set; }
  16. public int BT贴附对位成功率 { get; set; }
  17. public int 生产总数 { get; set; }
  18. }
  19. }