namespace BPA.MES.Base.Application.Services { /// /// 产线工艺步骤 /// public class ProductLineStepsDto { /// /// 步骤 /// public int Step { get; set; } /// /// 工艺Id /// public string ProcessId { get; set; } /// /// 产线Id /// public string LineId { get; set; } /// /// 工艺名称 /// public string ProcessName { get; set; } /// /// 类型 /// public string ProcessType { get; set; } } /// /// 增加 /// public class ProductLineStepsAddInput : ProductLineStepsDto { } /// /// 更新 /// public class ProductLineStepsUpdateInput : ProductLineStepsDto { /// /// 主键 /// public string Id { get; set; } } /// /// 删除 /// public class ProductLineStepsDelInput { /// /// 主键 /// public string Id { get; set; } } /// /// 分页 /// public class ProductLineStepsQueryPageInput : RequestPage { ///// ///// 名称 ///// //public string Name { get; set; } ///// ///// 编码 ///// //public string Code { get; set; } /// /// 产线Id /// public string LineId { get; set; } } /// /// 不分页 /// public class ProductLineStepsQueryInput { /// /// 产线Id /// public string LineId { get; set; } /// /// 产品Id /// public string FinalId { get; set; } } /// /// 输出 /// public class ProductLineStepsOutput : ProductLineStepsDto { /// /// 主键 /// public string Id { get; set; } /// /// 设备 /// public string[] DeviceId { get; set; } public List DevicesInfo { get; set; } } }