using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { /// /// /// public class MacGoodRateDto { /// /// 园区 /// public string Factroy { get; set; } /// /// 厂房 /// public string Plant { get; set; } /// /// 楼层 /// public string Floor { get; set; } /// /// 时间 /// public string PDate { get; set; } /// /// 机台 /// public string PartName { get; set; } /// /// 工序 /// public string StepName { get; set; } /// /// 投入 /// public double Input { get; set; } /// /// 产出 /// public double Output { get; set; } /// /// 良率 /// public string Rate { get; set; } /// /// 总数量 /// public int Count { get; set; } /// /// 目标 /// public string goal { get; set; } } }