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

31 lines
610 B
Java
Raw Normal View History

package com.engine.organization.mapper.extend;
2022-05-18 18:06:01 +08:00
import com.engine.organization.entity.extend.po.ExtendGroupPO;
2022-05-18 18:06:01 +08:00
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);
/**
* 根据ID查询分组名称
*
* @param id
* @return
*/
String getGroupNameById(@Param("id") String id);
2022-05-18 18:06:01 +08:00
}