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.
28 lines
643 B
28 lines
643 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 4.1.2 监控平台远程启动充电
|
|
/// </summary>
|
|
public class StartingCharge
|
|
{
|
|
/// <summary>
|
|
/// SOC限制
|
|
/// </summary>
|
|
public byte SOC { get; set; }
|
|
/// <summary>
|
|
/// 功率调节指令类型
|
|
/// </summary>
|
|
public byte PowerAdjInsType { get; set; }
|
|
/// <summary>
|
|
/// 功率调节参数
|
|
/// </summary>
|
|
public UInt16 powerRegulation { get; set; }
|
|
}
|
|
}
|