schangxiang@126.com
2024-12-19 4422008672f79f74841e11f20430c5e76686e293
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
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("Load")]
    public partial class Load
    {
        [Column(TypeName = "text")]
        public string spindleLoad { get; set; }
 
        [Column(TypeName = "text")]
        public string axialLoad { get; set; }
 
        public DateTime? time { get; set; }
 
        [StringLength(64)]
        public string machineID { get; set; }
 
        public long id { get; set; }
    }
}