xuhy
2024-10-31 946d468e5678ab1adde04511a8c3787d4c03fddc
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);
      notification.setChargingPileId(chargingPileId);
      notification.setPhone(phone);
      notification.setContent(data);
      this.baseMapper.saveData(notification);
      this.baseMapper.saveData(siteId,chargingPileId,phone,data);
   }
}