|
@ -18,6 +18,7 @@ |
|
|
package com.epmet.dao; |
|
|
package com.epmet.dao; |
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
|
|
|
import com.epmet.dto.StaffRoleDTO; |
|
|
import com.epmet.dto.result.GovStaffRoleResultDTO; |
|
|
import com.epmet.dto.result.GovStaffRoleResultDTO; |
|
|
import com.epmet.entity.StaffRoleEntity; |
|
|
import com.epmet.entity.StaffRoleEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
@ -39,7 +40,7 @@ public interface StaffRoleDao extends BaseDao<StaffRoleEntity> { |
|
|
* @param orgId |
|
|
* @param orgId |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
List<StaffRoleDTO> listStaffIdsByRoleKeyAndOrgId(@Param("roleKey") String roleKey, @Param("orgId") String orgId); |
|
|
List<GovStaffRoleResultDTO> listStaffIdsByRoleKeyAndOrgId(@Param("roleKey") String roleKey, @Param("orgId") String orgId); |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 删除工作人员权限 |
|
|
* 删除工作人员权限 |
|
@ -47,5 +48,5 @@ public interface StaffRoleDao extends BaseDao<StaffRoleEntity> { |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
boolean delStaffRoles(StaffRoleDTO dto); |
|
|
boolean delStaffRoles(StaffRoleDTO dto); |
|
|
List<GovStaffRoleResultDTO> listStaffIdsByRoleKeyAndOrgId(@Param("roleKey") String roleKey, @Param("orgId") String orgId); |
|
|
|
|
|
} |
|
|
} |