xuhy
2024-10-31 5a1cf66467a80fee6b2eedf5c973b6f71d883290
ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingPileNotificationServiceImpl.java
@@ -95,11 +95,11 @@
   @Override
   public void saveData(Integer type,Integer siteId,Integer chargingPileId, String phone, String data) {
      TChargingPileNotification notification = new TChargingPileNotification();
      notification.setSiteId(siteId==null?-1:siteId);
      notification.setChargingPileId(chargingPileId==null?-1:chargingPileId);
      notification.setSiteId(siteId);
      notification.setChargingPileId(chargingPileId);
      notification.setPhone(phone);
      notification.setContent(data);
      this.save(notification);
      this.baseMapper.saveData(notification);
   }
}