You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
675 B

namespace Entity.Api.Req;
public class AddEquipAlarmInfoReq
{
/// <summary>
/// 设备类型编码
/// </summary>
public int EquipTypeCode { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string EquipCode { get; set; }
/// <summary>
/// 报警编码
/// </summary>
public string ErrorCode { get; set; }
/// <summary>
/// 报警等级
/// </summary>
public string ErrorLevel { get; set; }
/// <summary>
/// 报警描述
/// </summary>
public string ErrorMsg { get; set; }
/// <summary>
/// 处理方法
/// </summary>
public string ProcessMethod { get; set; }
}