Files

20 lines
428 B
C#
Raw Permalink Normal View History

2026-08-06 09:23:30 +08:00
namespace JinYuan.Models
{
public class PLCGroupVariable : Variable
{
/// <summary>
/// 变量名称
/// </summary>
public int ArrayStart { get; set; }
/// <summary>
/// 电池数量
/// </summary>
public int CellSum { get; set; }
/// <summary>
/// 电池数量
/// </summary>
public string BTName { get; set; }
}
}