Lius
2025-03-21 87874019eefbe03dd429b5b7eed49d963ef03c88
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/service/impl/PartsDepartmentServiceImpl.java
@@ -5,10 +5,10 @@
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.dnc.entity.PartsDepartment;
import org.jeecg.modules.dnc.mapper.PartsDepartmentMapper;
import org.jeecg.modules.dnc.ucenter.Department;
import org.jeecg.modules.dnc.utils.ValidateUtil;
import org.jeecg.modules.dnc.service.IPartsDepartmentService;
import org.apache.commons.collections4.ListUtils;
import org.jeecg.modules.system.entity.MdcProduction;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@@ -28,13 +28,13 @@
    }
    @Override
    public List<Department> getDepartPermsByPartsId(String partsId) {
    public List<MdcProduction> getDepartPermsByPartsId(String partsId) {
        return super.getBaseMapper().getDepartPermsByPartsId(partsId);
    }
    @Override
    public List<Department> getDepartNonPermsByProductId(String partsId) {
        return super.getBaseMapper().getDepartNonPermsByProductId(partsId);
    public List<MdcProduction> getDepartNonPermsByProductId(String partsId) {
        return super.getBaseMapper().getDepartNonPermsByPartsId(partsId);
    }
    @Override