报警记录

This commit is contained in:
quowingwang
2025-12-20 10:34:36 +08:00
parent 4c5f59bb39
commit 3e7c2d959b
2 changed files with 6 additions and 1 deletions

View File

@@ -118,5 +118,10 @@ namespace ZR.Model.MES.andon
[SugarColumn(ColumnName = "updated_time")] [SugarColumn(ColumnName = "updated_time")]
public DateTime? UpdatedTime { get; set; } public DateTime? UpdatedTime { get; set; }
/// <summary>
/// 响应时间(分)
/// </summary>
[SugarColumn(ColumnName = "response_time")]
public int ResponseTime { get; set; }
} }
} }

View File

@@ -61,7 +61,7 @@ namespace ZR.Model.MES.andon.Dto
public string UserId { get; set; } public string UserId { get; set; }
public string UserName { get; set; } public string UserName { get; set; }
public int ResponseTime { get; set; }
} }
} }