forked from ddrilling/AsbCloudServer
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace AsbCloudApp.Data.ProcessMaps;
|
||
|
||
/// <summary>
|
||
/// РТК план shocktest
|
||
/// </summary>
|
||
public class ProcessMapPlanFunctionsShockTestDto : ProcessMapPlanBaseDto
|
||
{
|
||
/// <summary>
|
||
/// StickSlip
|
||
/// </summary>
|
||
[Range(0.0, 1000.0)]
|
||
public double StickSlip { get; set; }
|
||
|
||
/// <summary>
|
||
/// Whirl
|
||
/// </summary>
|
||
[Range(0.0, 1000.0)]
|
||
public double Whirl { get; set; }
|
||
|
||
/// <summary>
|
||
/// Осевые вибрации
|
||
/// </summary>
|
||
[Range(0.0, 1000.0)]
|
||
public double AxialVibrations { get; set; }
|
||
|
||
/// <summary>
|
||
/// Комбинированные вибрации
|
||
/// </summary>
|
||
[Range(0.0, 1000.0)]
|
||
public double CombinedVibrations { get; set; }
|
||
|
||
/// <summary>
|
||
/// Нагрузка минимальная, т
|
||
/// </summary>
|
||
[Range(1.0, 30.0)]
|
||
public double WeightOnBitMin { get; set; }
|
||
|
||
/// <summary>
|
||
/// Минимальные обороты на ВСП, об/мин.
|
||
/// </summary>
|
||
[Range(5, 200)]
|
||
public int RevolutionPerMinuteMin { get; set; }
|
||
|
||
/// <summary>
|
||
/// Автозапуск или Предупреждение
|
||
/// </summary>
|
||
[Required]
|
||
public int IdAutostartOrWarning { get; set; }
|
||
|
||
/// <summary>
|
||
/// Примечание
|
||
/// </summary>
|
||
[StringLength(1024)]
|
||
public string Note { get; set; } = string.Empty;
|
||
} |