You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
555 B
25 lines
555 B
namespace BatCharging.Service
|
|
{
|
|
public class S2MBRANCHCURR
|
|
{
|
|
/// <summary>
|
|
/// 支路1电流
|
|
/// </summary>
|
|
public float Branch1Curr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支路2电流
|
|
/// </summary>
|
|
public float Branch2Curr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支路3电流
|
|
/// </summary>
|
|
public float Branch3Curr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支路4电流
|
|
/// </summary>
|
|
public float Branch4Curr { get; set; }
|
|
}
|
|
} |