weaver-hrm-organization/src/com/engine/organization/mapper/comp/ExtendGroupMapper.java

23 lines
463 B
Java
Raw Normal View History

2022-05-18 18:06:01 +08:00
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);
}