package com.yuanchu.mom.service; import com.baomidou.mybatisplus.extension.service.IService; import com.yuanchu.mom.pojo.InspectionItem; import com.yuanchu.mom.pojo.dto.InspectionItemDto; import com.yuanchu.mom.pojo.dto.UpdateInspectionItemDto; import java.util.List; import java.util.Map; /** *

* 服务类 *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-08-01 */ public interface InspectionItemService extends IService { /** * 新增按钮-->2、查询所有检验项目 * @param id * @return */ List selectInspectionItem(Integer id, Integer type); /** * 新增按钮-->2、检验项目-->失去焦点发起该请求 * @param username * @param updateInspectionItemDto * @return */ Integer addProcessInspectionSheet(String username, UpdateInspectionItemDto updateInspectionItemDto); /** * 新增按钮-->选择设备 * @param technologyId * @param father * @param name * @return */ List> chooseDev(Integer technologyId, String father, String name); /** * 更改设备 * @param id * @param type * @param devId */ void updateDevByInsId(Integer id, Integer type, Integer devId); }