| | |
| | | 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; |
| | | |
| | |
| | | } |
| | | |
| | | @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 |