20 lines
428 B
C#
20 lines
428 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|