wg-basic/basic-interface/src/main/java/ink/wgink/interfaces/map/IGridPointSaveAfterHandler.java

23 lines
449 B
Java
Raw Normal View History

2021-12-23 19:48:57 +08:00
package ink.wgink.interfaces.map;
2022-02-04 21:27:37 +08:00
import ink.wgink.exceptions.base.SystemException;
2021-12-23 19:48:57 +08:00
/**
* @ClassName: IGridPointSaveAfterHandler
* @Description: 网格点新增后处理
* @Author: wanggeng
* @Date: 2021/12/23 10:29 AM
* @Version: 1.0
*/
public interface IGridPointSaveAfterHandler {
/**
2022-02-04 21:27:37 +08:00
* 操作
2021-12-23 19:48:57 +08:00
*
* @param gridId 网格ID
2022-02-04 21:27:37 +08:00
* @throws SystemException
2021-12-23 19:48:57 +08:00
*/
2022-02-04 21:27:37 +08:00
void handle(String gridId) throws SystemException;
2021-12-23 19:48:57 +08:00
}