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.
23 lines
632 B
23 lines
632 B
namespace BatCharging.Service
|
|
{
|
|
public class S2MPACKCURRLMT
|
|
{
|
|
/// <summary>
|
|
/// 允许脉冲放电电流
|
|
/// </summary>
|
|
public float AllwPulseDischrgCurr { get; set; }
|
|
/// <summary>
|
|
/// 允许脉冲回充电流
|
|
/// </summary>
|
|
public float AllwPulseRechrgCurr { get; set; }
|
|
/// <summary>
|
|
/// 允许持续放电电流
|
|
/// </summary>
|
|
public float AllwContiDischrgCurr { get; set; }
|
|
/// <summary>
|
|
/// 允许持续回充电流
|
|
/// </summary>
|
|
public float AllwContiRechrgCurr { get; set; }
|
|
|
|
}
|
|
} |