| | |
| | | import org.jeecg.modules.dnc.entity.ComponentDepartment; |
| | | import org.jeecg.modules.dnc.mapper.ComponentDepartmentMapper; |
| | | import org.jeecg.modules.dnc.service.IComponentDepartmentService; |
| | | import org.jeecg.modules.dnc.ucenter.Department; |
| | | import org.jeecg.modules.dnc.utils.ValidateUtil; |
| | | import org.apache.commons.collections4.ListUtils; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import java.util.ArrayList; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Department> getDepartPermsByComponentId(String componentId) { |
| | | public List<MdcProduction> getDepartPermsByComponentId(String componentId) { |
| | | return super.getBaseMapper().getDepartPermsByComponentId(componentId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Department> getDepartNonPermsByComponentId(String componentId) { |
| | | public List<MdcProduction> getDepartNonPermsByComponentId(String componentId) { |
| | | return super.getBaseMapper().getDepartNonPermsByComponentId(componentId); |
| | | } |
| | | |