schangxiang@126.com
2025-01-02 6f035bae8e9ce978c49941518de57585b77e8d7d
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
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("TimeData")]
    public partial class TimeData
    {
        public int? remainingCycleTimeMin { get; set; }
 
        public int? remainingCycleTimeMs { get; set; }
 
        public int? cumulativePowerOnTimeMin { get; set; }
 
        public int? cumulativePowerOnTimeMs { get; set; }
 
        public int? powerOnTimeMin { get; set; }
 
        public int? powerOnTimeMs { get; set; }
 
        public int? cumulativeOperatingTimeMin { get; set; }
 
        public int? cumulativeOperatingTimeMs { get; set; }
 
        public int? operatingTimeMin { get; set; }
 
        public int? operatingTimeMs { get; set; }
 
        public int? cumulativeCuttingTimeMin { get; set; }
 
        public int? cumulativeCuttingTimeMs { get; set; }
 
        public int? cuttingTimeMin { get; set; }
 
        public int? cuttingTimeMs { get; set; }
 
        public int? lastCycleTimeMin { get; set; }
 
        public int? lastCycleTimeMs { get; set; }
 
        public int? currentCycleTimeMin { get; set; }
 
        public int? currentCycleTimeMs { get; set; }
 
        public int? currentCuttingTimeMin { get; set; }
 
        public int? currentCuttingTimeMs { get; set; }
 
        public DateTime? time { get; set; }
 
        [StringLength(64)]
        public string machineID { get; set; }
 
        public long id { get; set; }
    }
}