Pu Zhibing
2024-11-06 32e9d5fd0a1eb454b0a7f84adf068bf7b36d6956
ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingPileNotificationServiceImpl.java
@@ -94,7 +94,12 @@
   @Override
   public void saveData(Integer type,Integer siteId,Integer chargingPileId, String phone, String data) {
      this.baseMapper.saveData(siteId,chargingPileId,phone,data);
      TChargingPileNotification notification = new TChargingPileNotification();
      notification.setSiteId(siteId);
      notification.setChargingPileId(chargingPileId);
      notification.setPhone(phone);
      notification.setContent(data);
      this.save(notification);
   }
}