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; } } }