23 lines
433 B
C#
23 lines
433 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class PLCGroupVariable : Variable
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 变量名称
|
||
|
|
/// </summary>
|
||
|
|
public int ArrayStart { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电池数量
|
||
|
|
/// </summary>
|
||
|
|
public int CellSum { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|