添加项目文件。

This commit is contained in:
Administrator
2026-08-06 09:23:30 +08:00
parent 771e23e00a
commit 4660ceee70
604 changed files with 138380 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
using CsvHelper.Configuration.Attributes;
namespace JinYuan.Models
{
/// <summary>
/// 报警表单数据
/// </summary>
public class AlarmForm
{
/// <summary>
/// 报警地址
/// </summary>
[Name("寄存器地址")]
public string PLCAdress { get; set; }
/// <summary>
/// 中语报警内容
/// </summary>
[Name("中语报警信息")]
public string AlarmContent { get; set; }
/// <summary>
/// 报警代码
/// </summary>
[Name("故障代码")]
public string AlarmCode { get; set; }
/// <summary>
/// 英语报警内容
/// </summary>
[Name("英语报警信息")]
public string EnAlarmContent { get; set; }
/// <summary>
/// 匈牙利语报警内容
/// </summary>
[Name("匈牙利语报警信息")]
public string HuAlarmContent { get; set; }
/// <summary>
/// 马来语报警内容
/// </summary>
[Name("马来语报警信息")]
public string MsAlarmContent { get; set; }
}
}