forked from ddrilling/AsbCloudServer
19 lines
790 B
C#
19 lines
790 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using AsbCloudDb.Model.ProcessMapPlan;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace AsbCloudDb.Model.ProcessMaps;
|
|||
|
|
|||
|
[Table("t_process_map_plan_functions_upgrade_no_load"), Comment("Обновление холостого хода")]
|
|||
|
public class ProcessMapPlanFunctionsUpgradeNoload : ProcessMapPlanBase
|
|||
|
{
|
|||
|
[Column("id_decline_socket_column"), Comment("СПУСК ОК Да/Нет")]
|
|||
|
public double IdDeclineSocketColumn { get; set; }
|
|||
|
|
|||
|
[Column("note"), Comment("Примечание"), StringLength(1024)]
|
|||
|
public string Note { get; set; } = string.Empty;
|
|||
|
|
|||
|
[ForeignKey(nameof(IdPrevious))]
|
|||
|
public virtual ProcessMapPlanFunctionsUpgradeNoload? Previous { get; set; }
|
|||
|
}
|