!50 0x19 云快充1.5.0 充电结束、0x52 云快充1.5.0 充电桩工作参数设置、0x51 云快充1.5.0 充电桩工作参数设置应答

* 0x19 云快充1.5.0 充电结束、0x52 云快充1.5.0  充电桩工作参数设置、0x51 云快充1.5.0  充电桩工作参数设置应答
This commit is contained in:
八万
2025-10-28 05:57:34 +00:00
committed by 三丙
parent 32334b6ba7
commit 26cec08d61
12 changed files with 332 additions and 5 deletions

View File

@@ -39,6 +39,7 @@ message DownlinkRequestMessage {
SetQrcodeRequest setQrcodeRequest = 34;
OfflineCardClearRequest offlineCardClearRequest = 35;
OfflineCardQueryRequest offlineCardQueryRequest = 36;
WorkParamSettingRequest workParamSettingRequest = 37;
}
// 下行响应消息
@@ -273,3 +274,9 @@ message OfflineCardQueryRequest {
repeated string cardNo = 3; // 物理卡号集合
}
message WorkParamSettingRequest {
string pileCode = 1; // 桩编号
bool allow = 2; // 是否允许工作
int32 maxAllowOutPower = 3; // 充电桩最大允许输出功率
}

View File

@@ -48,6 +48,8 @@ message UplinkQueueMessage {
SetQrcodeResponse setQrcodeResponse = 45;
OfflineCardClearResponse offlineCardClearResponse = 46;
OfflineCardQueryResponse offlineCardQueryResponse = 47;
EndChargeProto endChargeProto = 48;
WorkParamSettingResponse workParamSettingResponse = 49;
}
// 会话关闭事件
@@ -384,3 +386,19 @@ message SetQrcodeResponse {
int32 type = 7;
int32 startAddr = 8;
}
message EndChargeProto {
string tradeNo = 1; // 交易流水号
string pileCode = 2; // 桩编号枪号
string gunCode = 3; // 枪号
optional string additionalInfo = 4;
}
message WorkParamSettingResponse {
string pileCode = 1;
bool success = 2;
}