2
schangxiang@126.com
2024-08-23 d453122238d793c47b260aa65974a216bba2ae71
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
namespace iWare_SCADA_Model
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("DataCaptureConfig")]
    public partial class DataCaptureConfig
    {
        public int ID { get; set; }
 
        [StringLength(32)]
        public string EquipmentID { get; set; }
 
        [Required]
        [StringLength(32)]
        public string WorkingProcedure { get; set; }
 
        [Required]
        [StringLength(32)]
        public string DataCapturePointCode { get; set; }
 
        [StringLength(32)]
        public string DataCapturePointCname { get; set; }
 
        public int DataCaptureType { get; set; }
 
        public int? DataCapturePLCType { get; set; }
 
        [Required]
        [StringLength(255)]
        public string PLCIP { get; set; }
 
        public int PLCPort { get; set; }
 
        [Required]
        [StringLength(32)]
        public string DbNumber { get; set; }
 
        [Required]
        [StringLength(32)]
        public string Offset { get; set; }
 
        [Required]
        [StringLength(32)]
        public string DataCaptureColumnType { get; set; }
 
        [Required]
        public int DeleteFlag { get; set; }
 
        public int DataCaptureFrequency { get; set; }
        
    }
}