报警联系人

This commit is contained in:
quowingwang
2025-12-20 09:57:28 +08:00
parent b9acd961d9
commit 55d290c51c
2 changed files with 29 additions and 0 deletions

View File

@@ -54,5 +54,26 @@ namespace ZR.Model.MES.andon
/// </summary>
[SugarColumn(ColumnName = "response_time")]
public int ResponseTime { get; set; }
/// <summary>
/// 接收方
/// </summary>
[SugarColumn(ColumnName = "receiver")]
public int Receiver { get; set; }
/// <summary>
/// 接收方名称
/// </summary>
[SugarColumn(ColumnName = "receiver_name")]
public string ReceiverName { get; set; }
/// <summary>
/// 管理方
/// </summary>
[SugarColumn(ColumnName = "manager")]
public int Manager { get; set; }
[SugarColumn(ColumnName = "manager_name")]
public string ManagerName { get; set; }
}
}

View File

@@ -31,6 +31,14 @@ namespace ZR.Model.MES.andon.Dto
public int ResponseTime { get; set; }
public int Receiver { get; set; }
public string ReceiverName { get; set; }
public int Manager { get; set; }
public string ManagerName { get; set; }
}
public class AlarmTypePullDownDto