package com.yuanchu.mom.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.yuanchu.mom.dto.FactoryDto;
|
import com.yuanchu.mom.dto.SampleTypeDto;
|
import com.yuanchu.mom.pojo.StandardTree;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.io.IOException;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author Administrator
|
* @description 针对表【standard_tree(标准树)】的数据库操作Service
|
* @createDate 2024-03-01 15:06:44
|
*/
|
public interface StandardTreeService extends IService<StandardTree> {
|
|
List<FactoryDto> selectStandardTreeList();
|
List<SampleTypeDto> selectStandardTreeList2();
|
|
int addStandardTree(StandardTree standardTree);
|
|
int delStandardTree(String tree);
|
|
int addStandardProduct(String ids, String tree);
|
|
List<SampleTypeDto> getStandardTree2();
|
|
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);
|
|
void exportStandTree(HttpServletResponse response) throws IOException;
|
}
|