- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- [Table("Spcs")]
- public class Spc : Base
- {
- public string MachineId { get; set; }
- public DateTime DataTime { get; set; }
- public string Lasermark { get; set; }
- public string Values { get; set; }
- }
- }
|