forked from ddrilling/AsbCloudServer
28 lines
773 B
C#
28 lines
773 B
C#
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
namespace AsbCloudApp.Data.ProcessMaps;
|
||
|
||
/// <summary>
|
||
/// РТК план встряхивание бурового инструмента
|
||
/// </summary>
|
||
public class ProcessMapPlanFunctionsJarrDrillToolDto : ProcessMapPlanBaseDto
|
||
{
|
||
/// <summary>
|
||
/// Зенитный угол, градусы
|
||
/// </summary>
|
||
[Range(0.0, 100.0)]
|
||
public double ZenithAngle { get; set; }
|
||
|
||
/// <summary>
|
||
/// Складывание, м
|
||
/// </summary>
|
||
[Range(0.0, 20.0)]
|
||
public double Buckling { get; set; }
|
||
|
||
/// <summary>
|
||
/// Примечание
|
||
/// </summary>
|
||
[StringLength(1024)]
|
||
public string Note { get; set; } = string.Empty;
|
||
} |