123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Aitex.Core.MES.YZQZ
- {
- public class JobRecord
- {
- public string LotId { get; set; }
- public string MachineNumber { get; set; }
- public string MachineType { get; set; }
- public string OperatorId { get; set; }
- public string ReceipeName { get; set; }
- public string StartTime { get; set; }
- public string EndtTime { get; set; }
- public string OxygenConcentration { get; set; }
- public string CharmberPressure { get; set; }
- public string Power { get; set; }//功率
- public string Operation { get; set; }//工序名称
- }
- }
|