1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- [Table("MachineProcessBTs")]
- public class MachineProcessBT : Base
- {
- public string MachineId { get; set; }
- public DateTime DataTime { get; set; }
- public int No { get; set; }
- public int BTAOI检测NG数 { get; set; }
- public int BTAOI检查成功率 { get; set; }
- public int BT贴附对位NG数 { get; set; }
- public int BT贴附对位成功率 { get; set; }
- public int 生产总数 { get; set; }
- }
- }
|