| | |
| | | package com.ruoyi.basic.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.basic.dto.FactoryDto; |
| | | import com.ruoyi.basic.dto.AddStandardTreeNodeDto; |
| | | import com.ruoyi.basic.dto.SampleTypeDto; |
| | | import com.ruoyi.basic.dto.StandardLibraryTreeNodeDto; |
| | | import com.ruoyi.basic.dto.UpdateStandardTreeNodeDto; |
| | | import com.ruoyi.basic.dto.StandardTreeTemplateBindingDto; |
| | | import com.ruoyi.basic.dto.StandardTreeTemplateBindingVo; |
| | | import com.ruoyi.basic.dto.TemplateInspectionItemDto; |
| | | import com.ruoyi.basic.pojo.StandardTree; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | */ |
| | | public interface StandardTreeService extends IService<StandardTree> { |
| | | |
| | | List<FactoryDto> selectStandardTreeList(); |
| | | List<StandardLibraryTreeNodeDto> selectStandardTreeList(); |
| | | |
| | | |
| | | int addStandardTree(StandardTree standardTree); |
| | | int addStandardTree(AddStandardTreeNodeDto dto); |
| | | |
| | | int delStandardTree(String tree); |
| | | |
| | |
| | | |
| | | int upStandardProducts(Map<String, Object> product); |
| | | |
| | | List<StandardTree> getStandTreeBySampleType(String laboratory, String sampleType); |
| | | |
| | | void inExcelOfTree(MultipartFile file); |
| | | |
| | | void resetTreeOfPrice(String tree, Integer standardId); |
| | | |
| | | void resetTreeOfHour(String tree, Integer standardId); |
| | | |
| | | void resetTreeOfAsk(String tree, Integer standardId); |
| | | |
| | | void importWorkstationExcel(MultipartFile file); |
| | | |
| | | /** |
| | | * 标准数排序 |
| | | * 标准树排序 |
| | | * @param list |
| | | * @return |
| | | */ |
| | | boolean updateTreeSort(List<FactoryDto> list); |
| | | boolean updateTreeSort(List<StandardLibraryTreeNodeDto> list); |
| | | |
| | | int updateStandardTree(StandardTree standardTree); |
| | | int updateStandardTree(UpdateStandardTreeNodeDto dto); |
| | | |
| | | List<StandardTreeTemplateBindingVo> selectTemplateBindings(Integer standardTreeId); |
| | | |
| | | boolean saveTemplateBindings(StandardTreeTemplateBindingDto dto); |
| | | |
| | | List<TemplateInspectionItemDto> selectTemplateInspectionItems(Integer standardTreeId); |
| | | } |