forked from ddrilling/AsbCloudServer
21 lines
706 B
C#
21 lines
706 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using AsbCloudDb.Model.ProcessMapPlan;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace AsbCloudDb.Model.ProcessMapPlan.Functions;
|
|
|
|
[Table("t_process_map_plan_functions_damper"), Comment("Демпфер")]
|
|
public class ProcessMapPlanDamper : ProcessMapPlanBase
|
|
{
|
|
[Column("stick_slip"), Comment("StickSlip")]
|
|
[Range(0.0, 1000.0)]
|
|
[Required]
|
|
public double StickSlip { get; set; }
|
|
|
|
[Column("note"), Comment("Примечание"), StringLength(1024)]
|
|
public string? Note { get; set; }
|
|
|
|
[ForeignKey(nameof(IdPrevious))]
|
|
public virtual ProcessMapPlanDamper? Previous { get; set; }
|
|
} |