23 lines
463 B
Java
23 lines
463 B
Java
|
|
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<ExtendGroupPO> listByType(@Param("groupType") String groupType);
|
||
|
|
}
|