mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-19 06:39:50 +08:00
update
This commit is contained in:
@@ -65,7 +65,11 @@ public class HeartbeatRequestHandler extends AbstractHandler {
|
|||||||
// updateStatus(pileSn, pileConnectorNum, connectorStatus);
|
// updateStatus(pileSn, pileConnectorNum, connectorStatus);
|
||||||
|
|
||||||
// 公共方法修改状态
|
// 公共方法修改状态
|
||||||
|
try {
|
||||||
pileBasicInfoService.updateStatus(BytesUtil.bcd2Str(ykcDataProtocol.getFrameType()), pileSn, pileConnectorNum, connectorStatus, null);
|
pileBasicInfoService.updateStatus(BytesUtil.bcd2Str(ykcDataProtocol.getFrameType()), pileSn, pileConnectorNum, connectorStatus, null);
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("公共方法修改状态error", e);
|
||||||
|
}
|
||||||
|
|
||||||
// 心跳应答(置0)
|
// 心跳应答(置0)
|
||||||
byte[] flag = Constants.zeroByteArray;
|
byte[] flag = Constants.zeroByteArray;
|
||||||
|
|||||||
@@ -150,7 +150,9 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
|
|||||||
statusDesc = "已提现";
|
statusDesc = "已提现";
|
||||||
}
|
}
|
||||||
vo.setStatusDesc(statusDesc);
|
vo.setStatusDesc(statusDesc);
|
||||||
vo.setCashAmt(clearingWithdrawInfo.getCreditedAmt());
|
vo.setCashAmt(clearingWithdrawInfo.getWithdrawAmt());
|
||||||
|
vo.setCreditedAmt(clearingWithdrawInfo.getCreditedAmt());
|
||||||
|
vo.setFeeAmt(clearingWithdrawInfo.getFeeAmt());
|
||||||
resultList.add(vo);
|
resultList.add(vo);
|
||||||
}
|
}
|
||||||
PageResponse pageResponse = PageResponse.builder()
|
PageResponse pageResponse = PageResponse.builder()
|
||||||
|
|||||||
@@ -25,4 +25,12 @@ public class WithdrawInfoVO {
|
|||||||
|
|
||||||
// 提现金额
|
// 提现金额
|
||||||
private BigDecimal cashAmt;
|
private BigDecimal cashAmt;
|
||||||
|
|
||||||
|
// 到账金额
|
||||||
|
private BigDecimal creditedAmt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 提现手续费
|
||||||
|
*/
|
||||||
|
private BigDecimal feeAmt;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user