forked from ddrilling/AsbCloudServer
38 lines
995 B
C#
38 lines
995 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudDb.Model
|
|||
|
{
|
|||
|
[Table("t_telemetry_wireline_run_out"), Comment("Наработка талевого каната")]
|
|||
|
public class TelemetryWirelineRunOut
|
|||
|
{
|
|||
|
[Key]
|
|||
|
[Column("id")]
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
[Column("id_telemetry")]
|
|||
|
public int IdTelemetry { get; set; }
|
|||
|
|
|||
|
[Column("date_time")]
|
|||
|
public DateTimeOffset DateTime { get; set; }
|
|||
|
|
|||
|
[Column("hauling")]
|
|||
|
public float Hauling { get; set; }
|
|||
|
|
|||
|
[Column("hauling_warn_sp")]
|
|||
|
public float HaulingWarnSp { get; set; }
|
|||
|
|
|||
|
[Column("replace")]
|
|||
|
public float Replace { get; set; }
|
|||
|
|
|||
|
[Column("replace_warn_sp")]
|
|||
|
public float ReplaceWarnSp { get; set; }
|
|||
|
}
|
|||
|
}
|