package com.yuanchu.mom.mapper; import com.yuanchu.mom.pojo.Technology; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import java.util.Map; /** *

* Mapper 接口 *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-07-31 */ public interface TechnologyMapper extends BaseMapper { //根据型号id查询版本 List selectVerByTec(Integer specificationsId); //右侧数据展示-->工艺路线 List> selectAllTec(Integer specificationsId, Integer version,String message); //右上角新增-->工艺路线-->选择工序 List> chooseFather(Integer specificationsId); //右上角新增-->技术指标-->选择工序,工艺 List> chooseTech(Integer specificationsId); //批量删除 void delAllTech(String ids); }