You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
610 B
Java
31 lines
610 B
Java
3 years ago
|
package com.engine.organization.mapper.extend;
|
||
3 years ago
|
|
||
3 years ago
|
import com.engine.organization.entity.extend.po.ExtendGroupPO;
|
||
3 years ago
|
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);
|
||
3 years ago
|
|
||
|
/**
|
||
|
* 根据ID查询分组名称
|
||
|
*
|
||
|
* @param id
|
||
|
* @return
|
||
|
*/
|
||
|
String getGroupNameById(@Param("id") String id);
|
||
3 years ago
|
}
|