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