package com.engine.organization.mapper.comp; import com.engine.organization.entity.comp.po.ExtendGroupPO; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @description: TODO * @author:dxfeng * @createTime: 2022/05/18 * @version: 1.0 */ public interface ExtendGroupMapper { /** * 列表查询 * * @param groupType * @return */ List listByType(@Param("groupType") String groupType); }