zss
2024-07-22 26becb8ead5a00ed870a02da6535d7f1c54f32cc
inspect-server/src/main/java/com/yuanchu/mom/service/InsOrderPlanService.java
@@ -2,9 +2,12 @@
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.mom.dto.InsOrderPlanDTO;
import com.yuanchu.mom.pojo.InsOrder;
import com.yuanchu.mom.pojo.InsSample;
import com.yuanchu.mom.dto.InsProductDto;
import com.yuanchu.mom.pojo.InsOrderFile;
import com.yuanchu.mom.pojo.InsProduct;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
import java.util.Map;
/**
@@ -13,7 +16,29 @@
public interface InsOrderPlanService {
    Map<String,Object> selectInsOrderPlanList(Page page, InsOrderPlanDTO insOrderPlanDTO);
    Map<String,Object> inspectionOrderDetailsTaskSwitching(Page page, InsOrderPlanDTO insOrderPlanDTO);
    boolean claimInsOrderPlan(InsOrderPlanDTO entity);
    Map<String, Object> doInsOrder(Integer id);
    void saveInsContext(Map<String, Object> insContext);
    Map<String, Object> doInsOrder(Integer id, String laboratory);
    int upPlanUser(Integer userId, Integer orderId,String sonLaboratory);
    int verifyPlan(Integer orderId, String laboratory, Integer type, String tell);
    int submitPlan(Integer orderId, String laboratory, Integer verifyUser);
    List<InsProduct> getInsProduct(Integer id, Integer type, String laboratory);
    List<String> checkSubmitPlan(Integer orderId, String laboratory);
    Map<String,Object> getFileList(Page page, InsOrderFile insOrderFile);
    int uploadFile(Integer orderId, MultipartFile file);
    Map<String,Object> getReportModel(Integer sampleId);
    Map<String,Object> temCycle(Integer sampleId, String inspectionItem, String inspectionItemSubclass);
}