forked from ddrilling/AsbCloudServer
38 lines
1.5 KiB
C#
38 lines
1.5 KiB
C#
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace AsbCloudDb.Model.ProcessMaps;
|
|||
|
|
|||
|
[Table("t_well_ream_process_map"), Comment("РТК проработка скважины")]
|
|||
|
public class WellReamProcessMap : ProcessMapBase
|
|||
|
{
|
|||
|
[Column("repeats"), Comment("Количество повторений")]
|
|||
|
public double Repeats { get; set; }
|
|||
|
|
|||
|
[Column("spin_upward"), Comment("Вращение при движении вверх, об/мин")]
|
|||
|
public double SpinUpward { get; set; }
|
|||
|
|
|||
|
[Column("spin_downward"), Comment("Вращение при движении вниз, об/мин")]
|
|||
|
public double SpinDownward { get; set; }
|
|||
|
|
|||
|
[Column("speed_upward"), Comment("Скорость подъёма, м/ч")]
|
|||
|
public double SpeedUpward { get; set; }
|
|||
|
|
|||
|
[Column("speed_downward"), Comment("Скорость спуска, м/ч")]
|
|||
|
public double SpeedDownward { get; set; }
|
|||
|
|
|||
|
[Column("setpoint_drag"), Comment("Уставка зятяжки, т")]
|
|||
|
public double SetpointDrag { get; set; }
|
|||
|
|
|||
|
[Column("setpoint_tight"), Comment("Уставка посадки, т")]
|
|||
|
public double SetpointTight { get; set; }
|
|||
|
|
|||
|
[Column("pressure"), Comment("Давление, атм")]
|
|||
|
public double Pressure { get; set; }
|
|||
|
|
|||
|
[Column("torque"), Comment("Момент, кН*м")]
|
|||
|
public double Torque { get; set; }
|
|||
|
|
|||
|
[Column("comment"), Comment("Комментарий")]
|
|||
|
public string? Comment { get; set; }
|
|||
|
}
|