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

34 lines
671 B
Java
Raw Normal View History

package ink.wgink.interfaces.map;
2022-02-04 21:27:37 +08:00
import ink.wgink.exceptions.base.SystemException;
import ink.wgink.pojo.dtos.user.UserDTO;
import java.util.List;
/**
* @ClassName: IGridMemberSaveHandler
* @Description: 网格关系添加
* @Author: wanggeng
* @Date: 2021/12/24 2:59 PM
* @Version: 1.0
*/
public interface IGridRelationSaveAfterHandler {
/**
2022-02-04 21:27:37 +08:00
* 操作
*
* @param relationIds 关系ID列表
2022-02-04 21:27:37 +08:00
* @throws Exception
*/
2022-02-04 21:27:37 +08:00
void handle(List<String> relationIds) throws SystemException;
/**
2022-02-04 21:27:37 +08:00
* 操作
*
2022-02-04 21:27:37 +08:00
* @param userDTO 用户
* @throws Exception
*/
2022-02-04 21:27:37 +08:00
void handle(UserDTO userDTO) throws SystemException;
}