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

25 lines
482 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
import java.util.List;
/**
* @ClassName: IGridPointRemoveAfterHandler
* @Description: 网格点删除
* @Author: wanggeng
* @Date: 2021/12/23 10:37 AM
* @Version: 1.0
*/
public interface IGridPointDeleteAfterHandler {
/**
2022-02-04 21:27:37 +08:00
* 操作
2021-12-23 19:48:57 +08:00
*
2022-02-04 21:27:37 +08:00
* @param gridIds 网格ID列表
* @throws SystemException
2021-12-23 19:48:57 +08:00
*/
2022-02-04 21:27:37 +08:00
void handle(List<String> gridIds) throws SystemException;
2021-12-23 19:48:57 +08:00
}