12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using WCS.Core;
- using WCS.Entity;
- using WCS.Service.Extensions;
- using WCS.Service.Handlers;
- namespace WCS.Service.Works.RGV
- {
- [WorkTitle(typeof(RGVHandler), "直穿RGV")]
- public class 直穿RGV : DeviceWork<RGVDevice>
- {
- private readonly string ConvGroup_1030 = "G1030";
- private readonly string RGV8 = "RGV8";
- protected override void Do(RGVDevice rgv)
- {
- }
- protected override bool SelectDevice(WCS_DEVICE dev)
- {
- return dev.CODE == RGV8;
- }
- }
- [WorkTitle(typeof(RGVHandler), "涂布环穿")]
- public class 涂布环穿 : DeviceWork<RGVDevice>
- {
- protected override void Do(RGVDevice obj)
- {
- }
- protected override bool SelectDevice(WCS_DEVICE dev)
- {
- return dev.Is(DF.涂布RGV);
- }
- }
- [WorkTitle(typeof(RGVHandler), "BOPP环穿")]
- public class BOPP环穿 : DeviceWork<RGVDevice>
- {
- protected override void Do(RGVDevice obj)
- {
- }
- protected override bool SelectDevice(WCS_DEVICE dev)
- {
- return dev.Is(DF.BOPPRGV);
- }
- }
- }
|