| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.chargingPile.api.model.TChargingPileNotification; |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-08-08 |
| | | */ |
| | | public interface TChargingPileNotificationService extends IService<TChargingPileNotification> { |
| | | |
| | | |
| | | /** |
| | | * 获取系统通知列表数据 |
| | | * @param siteId |
| | | * @param basePage |
| | | * @return |
| | | */ |
| | | PageInfo<TChargingPileNotification> chargingPileNotificationPageList(Integer siteId, BasePage basePage); |
| | | |
| | | /** |
| | | * |
| | | * @param type 1=验证码 2=停车占位 3=充电结束 4=桩故障 |
| | | * @param phone 手机号 |
| | | * @param data 内容 |
| | | */ |
| | | void saveData(Integer type,Integer siteId,Integer chargingPileId, String phone, String data); |
| | | |
| | | } |