andon项目

This commit is contained in:
quowingwang
2025-12-10 13:55:42 +08:00
parent 76c70da708
commit 9439286219
27 changed files with 1354 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.andon.Dto
{
/// <summary>
/// 报警等级表查询对象
/// </summary>
public class AndonAlarmLevelQueryDto : PagerInfo
{
}
/// <summary>
/// 报警等级表输入输出对象
/// </summary>
public class AndonAlarmLevelDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string LevelName { get; set; }
public string LightColor { get; set; }
public int? HandleTimeout { get; set; }
public string ApplyScenario { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}