Lius
2025-03-13 eec61b51d7b64695d177c7cedd2da49f03f8c26e
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/mapper/ComponentDepartmentMapper.java
@@ -4,6 +4,7 @@
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;
@@ -14,12 +15,12 @@
     * @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);
}