2024-06-26 15:17:24 +05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using AsbCloudDb.Model.ProcessMapPlan;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model.ProcessMaps;
|
|
|
|
|
|
2024-06-30 13:53:31 +05:00
|
|
|
|
[Table("t_process_map_plan_rotor_rpm_acceleration"), Comment("Выход на обороты перед ротором")]
|
|
|
|
|
public class ProcessMapPlanRotorRpmAcceleration : ProcessMapPlanBase
|
2024-06-26 15:17:24 +05:00
|
|
|
|
{
|
|
|
|
|
[Column("zenit_angle"), Comment("Зенитный угол, градусы")]
|
|
|
|
|
[Range(0.0, 100.0)]
|
|
|
|
|
[Required]
|
|
|
|
|
public double ZenithAngle { get; set; }
|
|
|
|
|
|
|
|
|
|
[Column("buckling"), Comment("Складывание, м")]
|
|
|
|
|
[Range(0.0, 20.0)]
|
|
|
|
|
[Required]
|
|
|
|
|
public double Buckling { get; set; }
|
|
|
|
|
|
|
|
|
|
[Column("note"), Comment("Примечание"), StringLength(1024)]
|
|
|
|
|
public string Note { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[ForeignKey(nameof(IdPrevious))]
|
2024-06-30 13:53:31 +05:00
|
|
|
|
public virtual ProcessMapPlanRotorRpmAcceleration? Previous { get; set; }
|
2024-06-26 15:17:24 +05:00
|
|
|
|
}
|