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.
|
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmart.VariableManager.Models
- {
- /// <summary>
- /// 模拟量报警信息
- /// </summary>
- [Table(nameof(AnalogAlarmInfo))]
- public class AnalogAlarmInfo
- {
- //[Key]
- //public int Id { get; set; }
-
- ///// <summary>
- ///// 高高报警
- ///// </summary>
- //public AnalogAlarmModel Condition_HIHI_Value { get; set; } = new AnalogAlarmModel();
- ///// <summary>
- ///// 高报警
- ///// </summary>
- //public AnalogAlarmModel Condition_HI_Value { get; set; } = new AnalogAlarmModel();
- ///// <summary>
- ///// 低低报警
- ///// </summary>
- //public AnalogAlarmModel Condition_LOLO_Value { get; set; } = new AnalogAlarmModel();
- ///// <summary>
- ///// 低报警
- ///// </summary>
- //public AnalogAlarmModel Condition_LO_Value { get; set; } = new AnalogAlarmModel();
-
- //[ForeignKey("AlarmSetId")]
- //public int AlarmSetId { get; set; }
-
- //public AlarmSet AlarmSet { get; set; }
-
- }
- }
|