using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsvHelper.Configuration.Attributes;
namespace JY.Inspection.Common
{
///
/// 报警表单数据
///
public class AlarmForm
{
///
/// 报警地址
///
[Name("寄存器地址")]
public string PLCAdress { get; set; }
///
/// 报警内容
///
[Name("报警信息")]
public string AlarmContent { get; set; }
///
/// 报警代码
///
[Name("故障代码")]
public string AlarmCode { get; set; }
}
}