报警记录处理过程

This commit is contained in:
quowingwang
2025-12-11 11:11:56 +08:00
parent 467f71a150
commit af414d27c9
12 changed files with 483 additions and 56 deletions

View File

@@ -17,30 +17,38 @@ namespace ZR.Model.MES.andon.Dto
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string AlarmCode { get; set; }
public string LineCode { get; set; }
public string LineName { get; set; }
public string AlarmType { get; set; }
public string Sender { get; set; }
public DateTime? SendTime { get; set; }
public string Receiver { get; set; }
public DateTime? ResponseTime { get; set; }
public DateTime? HandleTime { get; set; }
public int? DurationTime { get; set; }
public string AlarmLevel { get; set; }
public string AlarmInfo { get; set; }
public string Sender { get; set; }
public string SenderName { get; set; }
public DateTime? SendTime { get; set; }
public string Receiver { get; set; }
public string ReceiverName { get; set; }
public int? Sequence { get; set; }
public int? DurationTime { get; set; }
public string Status { get; set; }
public string HandleResult { get; set; }
public string Remarks { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }

View File

@@ -0,0 +1,43 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.andon.Dto
{
/// <summary>
/// 安灯报警处理过程查询对象
/// </summary>
public class AndonAlarmRecordProcessQueryDto : PagerInfo
{
}
/// <summary>
/// 安灯报警处理过程输入输出对象
/// </summary>
public class AndonAlarmRecordProcessDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string AlarmCode { get; set; }
public string Operate { get; set; }
public string Operator { get; set; }
public string OperatorName { get; set; }
public DateTime? OperateTime { get; set; }
public string Remarks { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}