forked from ddrilling/AsbCloudServer
Добавлена DrillingQualityDto в проект
This commit is contained in:
parent
ca6b1fbd1c
commit
a21e580d6a
38
AsbCloudApp/Data/DrillingQualityDto.cs
Normal file
38
AsbCloudApp/Data/DrillingQualityDto.cs
Normal file
@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudApp.Data;
|
||||
|
||||
/// <summary>
|
||||
/// DTO, представляющая качество бурения
|
||||
/// </summary>
|
||||
public class DrillingQualityDto
|
||||
{
|
||||
/// <summary>
|
||||
/// ключ скважины
|
||||
/// </summary>
|
||||
public int IdWell { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// КПД скорости
|
||||
/// </summary>
|
||||
public double? KpdRop { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// КПД момента на ВСП
|
||||
/// </summary>
|
||||
public double? KpdTorque { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// КПД перепада давления
|
||||
/// </summary>
|
||||
public double? KpdPressureDelta { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// КПД нагрузки
|
||||
/// </summary>
|
||||
public double? KpdAxialLoad { get; set; }
|
||||
}
|
Loading…
Reference in New Issue
Block a user