schangxiang@126.com
2024-08-28 39c09dede499f7ba23bcd26b17b2199a31bddccc
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
namespace iWare.Wms.Core
{
    using iWare.Wms.Core;
    using Microsoft.EntityFrameworkCore;
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
 
    [Table("DataCaptureConfig")]
    [Comment("Êý¾ÝÊÕ¼¯¹¤ÐòÅäÖÃ")]
    public class DataCaptureConfig : DEntityBase
    {
        /// <summary>
        /// É豸±àºÅ
        /// </summary>
        [Comment("É豸±àºÅ")]
        [Required, MaxLength(32)]
        public string EquipmentID { get; set; }
 
        /// <summary>
        /// ¹¤ÐòºÅ
        /// </summary>
        [Comment("¹¤ÐòºÅ")]
        [Required, MaxLength(32)]
        public string WorkingProcedure { get; set; }
 
        /// <summary>
        /// Êý¾ÝÊÕ¼¯µã´úÂë
        /// </summary>
        [Comment("Êý¾ÝÊÕ¼¯µã´úÂë")]
        [Required, MaxLength(32)]
        public string DataCapturePointCode { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯ÊÕ¼¯µãÃèÊö
        /// </summary>
        [Comment("ÊÕ¼¯ÊÕ¼¯µãÃèÊö")]
        [MaxLength(32)]
        public string DataCapturePointCname { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯·½Ê½;PLC,NC
        /// </summary>
        [Comment("ÊÕ¼¯·½Ê½")]
        public int DataCaptureType { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯PLCÐͺÅ;±ÈÈçÎ÷ÃÅ×ÓS7£¬300ɶµÄ
        /// </summary>
        [Comment("ÊÕ¼¯PLCÐͺÅ")]
        public int DataCapturePLCType { get; set; }
 
        /// <summary>
        /// PLCµÄIPµØÖ·
        /// </summary>
        [Comment("PLCµÄIPµØÖ·")]
        [MaxLength(255)]
        public string PLCIP { get; set; }
 
        /// <summary>
        /// PLC¶Ë¿Ú
        /// </summary>
        [Comment("PLC¶Ë¿Ú")]
        public int PLCPort { get; set; }
 
        /// <summary>
        /// DB¿éµØÖ·
        /// </summary>
        [Comment("DB¿éµØÖ·")]
        [MaxLength(32)]
        public string DbNumber { get; set; }
 
        /// <summary>
        /// µØÖ·Æ«ÒÆÁ¿
        /// </summary>
        [Comment("µØÖ·Æ«ÒÆÁ¿")]
        [MaxLength(32)]
        public string Offset { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯×Ö¶ÎÀàÐÍ
        /// </summary>
        [Comment("ÊÕ¼¯×Ö¶ÎÀàÐÍ")]
        [MaxLength(32)]
        public string DataCaptureColumnType { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯×ֶ㤶È;¾Í×Ö·û´®ÐÍÓÃ
        /// </summary>
        [Comment("ÊÕ¼¯×ֶ㤶È;¾Í×Ö·û´®ÐÍÓÃ")]
        public int DataCaptureColumnLength { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯×ֶζÔÓ¦ÁÐÃû
        /// </summary>
        [Comment("ÊÕ¼¯×ֶζÔÓ¦ÁÐÃû")]
        [MaxLength(255)]
        public string DataCaptureColumnTabelName { get; set; }
 
        /// <summary>
        /// ÊÕ¼¯ÆµÂÊ(΢Ãë)
        /// </summary>
        [Comment("ÊÕ¼¯ÆµÂÊ(΢Ãë)")]
        public int DataCaptureFrequency { get; set; }
        /// <summary>
        /// ÊÇ·ñ·´À¡PLC 1:·´À¡PLC  2£º¡£¡£¡£
        /// </summary>
        [Comment("ÊÇ·ñ·´À¡PLC")]
        public int IsFeedback { get; set; }
 
    }
}