using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace ProductionLineMonitor.Core.Models { [Table("MachineProcessPSs")] public class MachineProcessPS : Base { public string MachineId { get; set; } public DateTime DataTime { get; set; } public int No { get; set; } public int PS本体撕落抛料数 { get; set; } public int PS放反抛料数 { get; set; } public int PS拍照NG抛料数 { get; set; } public int PS生产总数 { get; set; } public int PS撕膜NG抛料数 { get; set; } public int PS撕膜成功率 { get; set; } public int PS撕膜总数 { get; set; } public int PS贴附精度NG数 { get; set; } public int PS真空异常抛料数 { get; set; } } }