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