basic-server/src/main/java/com/ruoyi/basic/service/StandardMethodService.java
@@ -5,6 +5,8 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.basic.pojo.StandardMethod;
import com.ruoyi.basic.pojo.StandardMethodList;
import com.ruoyi.basic.pojo.StandardMethodAttachment;
import com.ruoyi.basic.pojo.Laboratory;
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
@@ -22,7 +24,7 @@
    List<StandardMethod> selectStandardMethods();
    int addStandardMethod(StandardMethod standardMethod);
    Integer addStandardMethod(StandardMethod standardMethod);
    int delStandardMethod(Integer id);
@@ -32,4 +34,12 @@
    List<StandardMethodList> selectStandardMethodEnum();
    List<StandardMethodAttachment> selectAttachments(Integer standardMethodId);
    StandardMethodAttachment uploadAttachment(Integer standardMethodId, MultipartFile file);
    boolean deleteAttachment(Long id);
    List<Laboratory> selectIndustryOptions();
}