领胜LDS 键盘AOI检测项目
wells.liu
2020-07-01 e9f47e76b9932949c9df829e98b09938eb93e870
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using Bro.Common.Model;
using System.Collections.Generic;
 
namespace Bro.Common.Interface
{
    public interface IMonitorSetCollection
    {
        List<IMonitorSet> MonitorSetCollection { get; set; }
 
        List<IMonitorSet> GetAllMonitorSet();
    }
 
    public interface IMonitorConfig : IMonitorSetCollection
    {
        bool IsEnableMonitor { get; set; }
 
        int MonitorInterval { get; set; }
 
        int MonitorTimeout { get; set; }
    }
 
    public interface IMonitorSet
    {
        string Id { get; set; }
 
        string InvokeDevice { get; set; }
 
        string MethodCode { get; set; }
 
        string MethodDesc { get; }
 
        IOperationConfig OpConfig { get; set; }
 
        string Name { get; set; }
 
        string DisplayText { get; }
 
        string SourceDevice { get; set; }
 
        ProcessResponse Response { get; set; }
    }
}