| 12345678910111213141516171819202122 |
- package com.dataeasy.server.service.manager;
- /**
- * @author tyuio
- * @version 1.0.0
- * @date 2025/3/19 9:33
- * @description 运维服务类
- */
- public interface IOpManager {
- /**
- * 调度任务
- * @param beanName 任务bean名称
- */
- void scheduleTask(String beanName);
- /**
- * 清除缓存
- * @param cacheName 缓存名称
- */
- void clearCache(String cacheName);
- }
|