终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
1.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmart.VariableManager.Models
  9. {
  10. /// <summary>
  11. /// 模拟量报警信息
  12. /// </summary>
  13. [Table(nameof(AnalogAlarmInfo))]
  14. public class AnalogAlarmInfo
  15. {
  16. //[Key]
  17. //public int Id { get; set; }
  18. ///// <summary>
  19. ///// 高高报警
  20. ///// </summary>
  21. //public AnalogAlarmModel Condition_HIHI_Value { get; set; } = new AnalogAlarmModel();
  22. ///// <summary>
  23. ///// 高报警
  24. ///// </summary>
  25. //public AnalogAlarmModel Condition_HI_Value { get; set; } = new AnalogAlarmModel();
  26. ///// <summary>
  27. ///// 低低报警
  28. ///// </summary>
  29. //public AnalogAlarmModel Condition_LOLO_Value { get; set; } = new AnalogAlarmModel();
  30. ///// <summary>
  31. ///// 低报警
  32. ///// </summary>
  33. //public AnalogAlarmModel Condition_LO_Value { get; set; } = new AnalogAlarmModel();
  34. //[ForeignKey("AlarmSetId")]
  35. //public int AlarmSetId { get; set; }
  36. //public AlarmSet AlarmSet { get; set; }
  37. }
  38. }