| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | 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; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | |
| | | |
| | | List<StandardMethod> selectStandardMethods(); |
| | | |
| | | int addStandardMethod(StandardMethod standardMethod); |
| | | Integer addStandardMethod(StandardMethod standardMethod); |
| | | |
| | | int delStandardMethod(Integer id); |
| | | |
| | | int upStandardMethod(StandardMethod standardMethod); |
| | | |
| | | void inputExcel(MultipartFile file) throws IOException; |
| | | Map<String, List<?>> selectsStandardMethodByFLSSM(String tree); |
| | | |
| | | List<StandardMethodList> selectStandardMethodEnum(); |
| | | |
| | | List<StandardMethodAttachment> selectAttachments(Integer standardMethodId); |
| | | |
| | | StandardMethodAttachment uploadAttachment(Integer standardMethodId, MultipartFile file); |
| | | |
| | | boolean deleteAttachment(Long id); |
| | | |
| | | List<Laboratory> selectIndustryOptions(); |
| | | |
| | | } |