领胜LDS 键盘AOI检测项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using Bro.Common.Base;
using Bro.Common.Helper;
using Bro.Common.Interface;
using Bro.UI.Device.Winform;
using System.ComponentModel;
 
namespace Bro.Device.GTSCard
{
 
    [Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.OperationConfig)]
    public class GTSCardOperationConfig : MotionCardOperationConfigBase
    {
    }
 
    [Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.InitialConfig)]
    public class GTSCardInitialConfig : MotionCardInitialConfigBase
    {
    }
 
    [Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.RunCtrl)]
    public class GTSCardRunCtrl : CtrlMotionCardRunBase
    {
        public GTSCardRunCtrl(IDevice device) : base(device) { }
    }
 
}