| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.jeecg.modules.dnc.entity.ProductDepartment; |
| | | import org.jeecg.modules.dnc.mapper.ProductDepartmentMapper; |
| | | import org.jeecg.modules.dnc.ucenter.Department; |
| | | import org.jeecg.modules.dnc.utils.ValidateUtil; |
| | | import org.jeecg.modules.dnc.service.IProductDepartmentService; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Department> getDepartPermsByProductId(String productId) { |
| | | public List<MdcProduction> getDepartPermsByProductId(String productId) { |
| | | return super.getBaseMapper().getDepartPermsByProductId(productId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Department> getDepartNonPermsByProductId(String productId) { |
| | | public List<MdcProduction> getDepartNonPermsByProductId(String productId) { |
| | | return super.getBaseMapper().getDepartNonPermsByProductId(productId); |
| | | } |
| | | |