From 55d290c51c94a09f39294525fb0d8794a8feb5f9 Mon Sep 17 00:00:00 2001 From: quowingwang Date: Sat, 20 Dec 2025 09:57:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=AD=A6=E8=81=94=E7=B3=BB=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZR.Model/MES/andon/AndonAlarmTypeDict.cs | 21 +++++++++++++++++++ .../MES/andon/Dto/AndonAlarmTypeDictDto.cs | 8 +++++++ 2 files changed, 29 insertions(+) diff --git a/ZR.Model/MES/andon/AndonAlarmTypeDict.cs b/ZR.Model/MES/andon/AndonAlarmTypeDict.cs index 36b4e2d3..575b7389 100644 --- a/ZR.Model/MES/andon/AndonAlarmTypeDict.cs +++ b/ZR.Model/MES/andon/AndonAlarmTypeDict.cs @@ -54,5 +54,26 @@ namespace ZR.Model.MES.andon /// [SugarColumn(ColumnName = "response_time")] public int ResponseTime { get; set; } + + /// + /// 接收方 + /// + [SugarColumn(ColumnName = "receiver")] + public int Receiver { get; set; } + + /// + /// 接收方名称 + /// + [SugarColumn(ColumnName = "receiver_name")] + public string ReceiverName { get; set; } + + /// + /// 管理方 + /// + [SugarColumn(ColumnName = "manager")] + public int Manager { get; set; } + + [SugarColumn(ColumnName = "manager_name")] + public string ManagerName { get; set; } } } \ No newline at end of file diff --git a/ZR.Model/MES/andon/Dto/AndonAlarmTypeDictDto.cs b/ZR.Model/MES/andon/Dto/AndonAlarmTypeDictDto.cs index 399be1a0..eefe3ff9 100644 --- a/ZR.Model/MES/andon/Dto/AndonAlarmTypeDictDto.cs +++ b/ZR.Model/MES/andon/Dto/AndonAlarmTypeDictDto.cs @@ -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