23 lines
449 B
Java
23 lines
449 B
Java
package ink.wgink.interfaces.map;
|
|
|
|
import ink.wgink.exceptions.base.SystemException;
|
|
|
|
/**
|
|
* @ClassName: IGridPointSaveAfterHandler
|
|
* @Description: 网格点新增后处理
|
|
* @Author: wanggeng
|
|
* @Date: 2021/12/23 10:29 AM
|
|
* @Version: 1.0
|
|
*/
|
|
public interface IGridPointSaveAfterHandler {
|
|
|
|
/**
|
|
* 操作
|
|
*
|
|
* @param gridId 网格ID
|
|
* @throws SystemException
|
|
*/
|
|
void handle(String gridId) throws SystemException;
|
|
|
|
}
|