Spc.cs 413 B

12345678910111213141516
  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("Spcs")]
  8. public class Spc : Base
  9. {
  10. public string MachineId { get; set; }
  11. public DateTime DataTime { get; set; }
  12. public string Lasermark { get; set; }
  13. public string Values { get; set; }
  14. }
  15. }