JobRecord.cs 740 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Aitex.Core.MES.YZQZ
  7. {
  8. public class JobRecord
  9. {
  10. public string LotId { get; set; }
  11. public string MachineNumber { get; set; }
  12. public string MachineType { get; set; }
  13. public string OperatorId { get; set; }
  14. public string ReceipeName { get; set; }
  15. public string StartTime { get; set; }
  16. public string EndtTime { get; set; }
  17. public string OxygenConcentration { get; set; }
  18. public string CharmberPressure { get; set; }
  19. public string Power { get; set; }//功率
  20. public string Operation { get; set; }//工序名称
  21. }
  22. }