puzhibing
2024-10-31 c6133f8831c588745fa35aba156eb3fd77336b34
ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingPileNotificationServiceImpl.java
@@ -94,12 +94,7 @@
   @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.setPhone(phone);
      notification.setContent(data);
      this.save(notification);
      this.baseMapper.saveData(siteId,chargingPileId,phone,data);
   }
}