222
schangxiang@126.com
2025-09-24 68941a04cb2320daa22ba0d5ac79a4447c29998d
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
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("DataCaptureColumnConfig")]
    public partial class DataCaptureColumnConfig
    {
        public int ID { get; set; }
 
        [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; }
 
        [Required]
        [StringLength(32)]
        public string DbNumber { get; set; }
 
        [Required]
        [StringLength(32)]
        public string Offset { get; set; }
 
        [Required]
        [StringLength(32)]
        public string DataCaptureColumnType { get; set; }
    }
}