using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { /// /// 获取机种及工序信息返回实体 /// public class EquipmentRecipeInfo { /// /// 设备ID /// public string EquipmentID { get; set; } /// /// 工序 /// public string Process { get; set; } /// /// 机种 /// public string Recipe { get; set; } } }