领胜LDS 键盘AOI检测项目
wells.liu
2020-07-07 5918194fccdb2a2303e713b8d2f3335243b9e2ef
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
using System;
using System.Collections.Generic;
 
namespace Bro.Common.Interface
{
    public interface IWarningSetCollection
    {
        List<IWarningSet> WarningSetCollection { get; set; }
 
        List<IWarningSet> GetAllWarningSet();
    }
 
    public interface IWarningSet
    {
        string Id { get; set; }
 
        string Name { get; set; }
 
        string DisplayText { get; }
 
        bool TriggerValue { get; set; }
 
        string WarningCode { get; set; }
 
        string WarningDescription { get; set; }
 
        int WarningLvl { get; set; }
 
        bool CurrentStatus { get; set; }
 
        string Source { get; set; }
 
        DateTime TriggerTime { get; set; }
 
    }
}