| | |
| | | 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; |
| | |
| | | |
| | | List<StandardMethod> selectStandardMethods(); |
| | | |
| | | int addStandardMethod(StandardMethod standardMethod); |
| | | Integer addStandardMethod(StandardMethod standardMethod); |
| | | |
| | | int delStandardMethod(Integer id); |
| | | |
| | |
| | | |
| | | List<StandardMethodList> selectStandardMethodEnum(); |
| | | |
| | | List<StandardMethodAttachment> selectAttachments(Integer standardMethodId); |
| | | |
| | | StandardMethodAttachment uploadAttachment(Integer standardMethodId, MultipartFile file); |
| | | |
| | | boolean deleteAttachment(Long id); |
| | | |
| | | List<Laboratory> selectIndustryOptions(); |
| | | |
| | | } |