M182轴承端盖外观缺陷AOI
kingno
2025-09-18 1894ccc4014d813ea60cf276ac066e5870a82566
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
using Bro.Common.Base;
using Bro.Common.Helper;
using Bro.Common.Model;
using Bro.M141.Process;
using System.ComponentModel;
using System.Drawing.Design;
 
namespace Bro.M141_AOI1.Process
{
    [Process("AOI1", EnumHelper.DeviceAttributeType.InitialConfig)]
    public class AOI1Config : M141Config
    {
 
        [Category("PLC配置")]
        [Description("完成地址")]
        [DisplayName("完成地址")]
        public int Plcover { get; set; } = 3004;
 
        [Category("PLC配置")]
        [Description("结果地址1")]
        [DisplayName("结果地址1")]
        public int Finresult1 { get; set; } = 3001;
 
        [Category("PLC配置")]
        [Description("结果地址2")]
        [DisplayName("结果地址2")]
        public int Finresult2 { get; set; } = 3002;
 
        [Category("PLC配置")]
        [Description("结果地址3")]
        [DisplayName("结果地址3")]
        public int Finresult3 { get; set; } = 3003;
 
        [Category("PLC配置")]
        [Description("物料码地址")]
        [DisplayName("物料码地址")]
        public int Pronumaddress { get; set; } = 3005;
 
    }
}