安灯修改中

This commit is contained in:
quowingwang
2025-12-19 15:22:41 +08:00
parent 019e11b1c8
commit 11a012035e
6 changed files with 149 additions and 151 deletions

View File

@@ -20,17 +20,11 @@ namespace ZR.Model.MES.andon
public string LevelName { get; set; }
/// <summary>
/// 三色灯颜色(红色/黄色/绿色
/// 三色灯颜色(红色/黄色)
/// </summary>
[SugarColumn(ColumnName = "light_color")]
public string LightColor { get; set; }
/// <summary>
/// 处理时限(分钟)
/// </summary>
[SugarColumn(ColumnName = "handle_timeout")]
public int? HandleTimeout { get; set; }
/// <summary>
/// 适用场景
/// </summary>

View File

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

View File

@@ -22,8 +22,6 @@ namespace ZR.Model.MES.andon.Dto
public string LightColor { get; set; }
public int? HandleTimeout { get; set; }
public string ApplyScenario { get; set; }
public string CreatedBy { get; set; }

View File

@@ -29,7 +29,7 @@ namespace ZR.Model.MES.andon.Dto
public DateTime? UpdatedTime { get; set; }
public int ResponseTime { get; set; }
}