1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- [Table("MachineProcessPSEPDs")]
- public class MachineProcessPSEPD : Base
- {
- public string MachineId { get; set; }
- public DateTime DataTime { get; set; }
- public int No { get; set; }
- public int EPD二次撕膜数 { get; set; }
- public int EPD撕膜NG数 { get; set; }
- public int EPD撕膜成功率 { get; set; }
- public int EPD撕膜数 { get; set; }
- public int EPD一次撕膜数 { get; set; }
- }
- }
|