mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-05 02:19:56 +08:00
!43 离线卡数据清除(0x46) 离线卡数据清除应答(0x45)
* merge master * merge master * Merge branch 'master' into Feat_离线卡数据清除、离线卡数据查询 * merge master * Merge branch 'master' into Feat_离线卡数据清除、离线卡数据查询 * 离线卡数据清除(0x46) 离线卡数据清除应答(0x45) * 离线卡数据清除(0x46) 离线卡数据清除应答(0x45) * 离线卡数据清除(0x46) 离线卡数据清除应答(0x45) * 离线卡数据清除(0x46) 离线卡数据清除应答(0x45)
This commit is contained in:
@@ -45,6 +45,8 @@ message UplinkQueueMessage {
|
||||
TimeSyncResponse timeSyncResponse = 42;
|
||||
BmsDemandChargerOutputProto bmsDemandChargerOutputProto = 43;
|
||||
StartChargeRequest startChargeRequest = 44;
|
||||
OfflineCardClearResponse offlineCardClearResponse = 45;
|
||||
OfflineCardQueryResponse offlineCardQueryResponse = 46;
|
||||
}
|
||||
|
||||
// 会话关闭事件
|
||||
@@ -339,6 +341,34 @@ message TimeSyncResponse {
|
||||
string time = 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
message OfflineCardClearResponse {
|
||||
string pileCode = 1; // 充电桩编码
|
||||
repeated ClearResult clearResult = 2; // 清除卡号结果集合
|
||||
}
|
||||
|
||||
message ClearResult {
|
||||
string cardNo = 1; // 物理卡号
|
||||
bool success = 2;
|
||||
optional string errorMsg = 3;
|
||||
}
|
||||
|
||||
|
||||
|
||||
message OfflineCardQueryResponse {
|
||||
string pileCode = 1; // 充电桩编码
|
||||
repeated QueryResult queryResult = 2; // 查询卡号结果集合
|
||||
}
|
||||
|
||||
message QueryResult {
|
||||
string cardNo = 1; // 物理卡号
|
||||
bool exist = 2;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// BMS需求充电机输出
|
||||
message BmsDemandChargerOutputProto {
|
||||
string pileCode = 4;
|
||||
|
||||
Reference in New Issue
Block a user