schangxiang@126.com
2024-09-06 19c66ffe3a8d2a2e784ba54cefc6f2566135bafa
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
namespace iWare_SCADA_Model.TableModelSC
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("Postion")]
    public partial class Postion
    {
        [Column(TypeName = "text")]
        public string axisName { get; set; }
 
        [Column(TypeName = "text")]
        public string unit { get; set; }
 
        [Column(TypeName = "text")]
        public string mach { get; set; }
 
        [Column(TypeName = "text")]
        public string abs { get; set; }
 
        [Column(TypeName = "text")]
        public string rel { get; set; }
 
        [Column(TypeName = "text")]
        public string dist { get; set; }
 
        public DateTime? time { get; set; }
 
        [StringLength(64)]
        public string machineID { get; set; }
 
        public long id { get; set; }
    }
}