using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { /// /// 报工 /// public class JobbookingDto { /// /// 机台编号 /// public string MacCode { get; set; } /// /// 机型代码 /// public string MacModelCode { get; set; } /// /// 机型名称 /// public string MacModelName { get; set; } /// /// 制程代码 /// public string PCode { get; set; } public string ProductCode { get; set; } /// /// 总数量 /// public int FTotal { get; set; } /// /// 良品数 /// public int FGoods { get; set; } /// /// 不良数 /// public int Rejects { get; set; } /// /// 报废数 /// public int Losts { get; set; } /// /// trackin时间 /// public DateTime TrackInTime { get; set; } /// /// trackout时间 /// public DateTime TrackOutTime { get; set; } public decimal RunTime { get; set; } } }