|
|
@ -25,6 +25,7 @@ import com.epmet.dataaggre.entity.epmetuser.CustomerStaffEntity; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
import java.util.LinkedList; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
@ -53,11 +54,17 @@ public interface CustomerStaffDao extends BaseDao<CustomerStaffEntity> { |
|
|
|
*/ |
|
|
|
List<ListStaffResultDTO> selectByRealName(@Param("customerId") String customerId, @Param("realName") String realName); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 分页查询排好序的工作人员Id列表 |
|
|
|
* @author sun |
|
|
|
*/ |
|
|
|
LinkedList<String> selectOrderRole(OrgStaffListFormDTO formDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 分页查询工作人员基础信息、角色信息【组织人员单位领导角色人员在前;部门人员部门领导角色人员在前;网格人员网格长角色人员在前】 |
|
|
|
* @author sun |
|
|
|
*/ |
|
|
|
List<ListStaffResultDTO> selectStaffList(OrgStaffListFormDTO formDTO); |
|
|
|
List<ListStaffResultDTO> selectStaffList(@Param("staffIds") LinkedList<String> staffIds); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询工作人员基础信息 |
|
|
|