| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.jeecg.modules.dnc.entity.ComponentDepartment; |
| | | import org.jeecg.modules.dnc.ucenter.Department; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param componentId |
| | | * @return |
| | | */ |
| | | List<Department> getDepartPermsByComponentId(@Param("componentId") String componentId); |
| | | List<MdcProduction> getDepartPermsByComponentId(@Param("componentId") String componentId); |
| | | |
| | | /** |
| | | * 获取未分配的部门 |
| | | * @param componentId |
| | | * @return |
| | | */ |
| | | List<Department> getDepartNonPermsByComponentId(@Param("componentId") String componentId); |
| | | List<MdcProduction> getDepartNonPermsByComponentId(@Param("componentId") String componentId); |
| | | } |