update 打印日志

This commit is contained in:
2023-11-02 15:50:29 +08:00
parent d407c51f81
commit 3ff7e5daf9
2 changed files with 2 additions and 1 deletions

View File

@@ -131,7 +131,7 @@ public class ConfirmStartChargingRequestHandler extends AbstractHandler{
String transactionCode = "";
try {
if (StringUtils.equals("01", startMode)) {
log.info("桩号:{}申请充电物理卡号:{}", pileSn, physicsCard);
log.info("桩号:{}, 申请充电物理卡号:{}", pileSn, physicsCard);
// 查询卡信息 根据传过来的物理卡号查询数据库中此卡信息
PileAuthCard pileAuthCardInfo = pileAuthCardService.selectCardInfoByLogicCard(physicsCard);
if (pileAuthCardInfo == null) {

View File

@@ -2291,6 +2291,7 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
*/
@Override
public Map<String, Object> generateOrderByCard(GenerateOrderDTO dto) throws Exception {
logger.info("充电桩主动申请启动充电生成订单 param:{}", JSON.toJSONString(dto));
// BigDecimal totalAccountAmount = BigDecimal.ZERO;
BigDecimal accountBalance = BigDecimal.ZERO;
String payMode;