namespace BPA.MES.Base.Application.Services { /// /// 名 称 :产线设备 /// 创 建 人 :yangxiao /// 创建时间 : 2023/7/20 17:00:32 /// 描 述 : /// public class ProductLineDeviceDto { /// /// 产线Id /// public string LineId { get; set; } /// /// 产线设备 /// public string DeviceId { get; set; } } public class ProductLineDeviceAddInput: ProductLineDeviceDto { } /// /// 产线设备不分页 /// public class ProductLineDeviceQueryInput { /// /// 名称 /// public string Name { get; set; } /// /// 产线Id /// public string LineId { get; set; } } /// /// 产线设备分页 /// public class ProductLineDeviceQueryPageInput : RequestPage { /// /// 名称 /// public string Name { get; set; } /// /// 产线Id /// public string LineId { get; set; } } /// /// 删除产线设备 /// public class ProductLineDeviceDelInput: ProductLineDeviceDto { /// /// 主键 /// public string Id { get; set; } } /// /// 产线设备关联信息 /// public class ProductLineDeviceOutput: ProductLineDeviceDto { /// /// 主键 /// public string Id { get; set; } /// /// 名称 /// /// 设备名称 public string DeviceName { get; set; } /// /// 编码 /// public string DeviceCode { get; set; } /// /// 设备类型 /// public string DeviceType { get; set; } /// /// 设备描述 /// /// 设备描述 public string Describe { get; set; } } }