first commit

This commit is contained in:
lq
2026-09-07 08:07:08 +08:00
commit e703fb2752
2488 changed files with 2784663 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace JinYuan.Models
{
public class PLCConfig
{
/// <summary>
/// PLC编号
/// </summary>
public int PlcNum { get; set; }
/// <summary>
/// PLC类型
/// </summary>
public string PLCType { get; set; }
/// <summary>
/// IP地址
/// </summary>
public string IPAddress { get; set; }
/// <summary>
/// 端口号
/// </summary>
public string Port { get; set; }
/// <summary>
/// 心跳地址
/// </summary>
public string HeartBeat { get; set; }
/// <summary>
/// 是否启用心跳
/// </summary>
public bool IsHeartBeat { get; set; }
/// <summary>
///PLC是否激活
/// </summary>
public bool IsActive { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}