| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Alarm
- {
- public class AlarmHistoryEntity : ObservableObject
- {
- public int num { get; set; }
- public string fayuTime { get; set; } = "---";
- public string alarmState { get; set; } = "结束报警";
- public string alarmContent { get; set; }
- public string tlName { get; set; }
- public long id { get; set; }
- private string _tlSn;
- public string tlSn { get => _tlSn; set => SetProperty(ref _tlSn, value); }
- private int _wellSn;
- public int wellSn { get => _wellSn; set => SetProperty(ref _wellSn, value); }
- private int _houseSn;
- public int houseSn { get => _houseSn; set => SetProperty(ref _houseSn, value); }
- private int _alarmTypeId;
- public int alarmTypeId { get => _alarmTypeId; set => SetProperty(ref _alarmTypeId, value); }
- private string _alarmKey;
- public string alarmKey { get => _alarmKey; set => SetProperty(ref _alarmKey, value); }
- private string _title;
- public string title { get => _title; set => SetProperty(ref _title, value); }
- private string _text;
- public string text { get => _text; set => SetProperty(ref _text, value); }
- private string _textDetail;
- public string textDetail { get => _textDetail; set => SetProperty(ref _textDetail, value); }
- private string _startTime = string.Empty;
- public string startTime { get => _startTime; set => SetProperty(ref _startTime, value); }
- private string _endTime = string.Empty;
- public string endTime { get => _endTime; set => SetProperty(ref _endTime, value); }
- private string _startTimeString = string.Empty;
- public string startTimeString { get => _startTimeString; set => SetProperty(ref _startTimeString, value); }
- private string _endTimeString = "---";
- public string endTimeString { get => _endTimeString; set => SetProperty(ref _endTimeString, value); }
- private int _type;
- public int type { get => _type; set => SetProperty(ref _type, value); }
- /// <summary>
- /// 是否静音 0 否 1 是
- /// </summary>
- public int mute { get; set; }
- private int _notify;
- public int notify { get => _notify; set => SetProperty(ref _notify, value); }
- private bool isCheck;
- public bool IsCheck { get => isCheck; set => SetProperty(ref isCheck, value); }
- }
- }
|