package com.yuanchu.mom.service.impl;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.yuanchu.mom.mapper.*;
import com.yuanchu.mom.pojo.*;
import com.yuanchu.mom.pojo.dto.TechnologyDto;
import com.yuanchu.mom.service.*;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
/**
*
* 服务实现类
*
*
* @author 江苏鵷雏网络科技有限公司
* @since 2023-07-31
*/
@Service
public class TechnologyServiceImpl extends ServiceImpl implements TechnologyService {
@Resource
TechnologyMapper technologyMapper;
@Resource
DeviceMapper deviceMapper;
@Resource
ProductMapper productMapper;
@Resource
MbomMapper mbomMapper;
//根据型号id查询版本
@Override
public List selectVerByTec(Integer specificationsId) {
return technologyMapper.selectVerByTec(specificationsId);
}
//右侧数据展示-->工艺路线
@Override
public List