| | |
| | | import com.ruoyi.inspect.vo.InsOrderPlanTaskSwitchVo; |
| | | import com.ruoyi.inspect.vo.InsOrderPlanVO; |
| | | import com.ruoyi.inspect.vo.SampleVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @createDate 2024-03-14 17:14:57 |
| | | * @Entity com.yuanchu.mom.pojo.InsSample |
| | | */ |
| | | @Mapper |
| | | public interface InsSampleMapper extends BaseMapper<InsSample> { |
| | | |
| | | IPage<InsOrderPlanVO> findInsSampleAndOrder(Page page, |
| | |
| | | * @param laboratory |
| | | * @return |
| | | */ |
| | | List<InsProduct> getInsProduct1(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("cableTag") String cableTag, @Param("repetitionTag") String repetitionTag, @Param("isDisqualification") String isDisqualification); |
| | | List<InsProduct> getInsProduct1(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("cableTag") String cableTag, @Param("repetitionTag") String repetitionTag); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param rawMaterialTag |
| | | * @return |
| | | */ |
| | | List<InsProduct> getInsProduct6(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("rawMaterialTag") String rawMaterialTag, @Param("isDisqualification") String isDisqualification); |
| | | List<InsProduct> getInsProduct6(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("rawMaterialTag") String rawMaterialTag); |
| | | |
| | | SampleVo getDetailById(@Param("sampleId") Integer sampleId); |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<InsProduct> selectProductResult(@Param("itemIds") List<Integer> itemIds); |
| | | |
| | | /** |
| | | * 根据订单id查询样品 |
| | | * @param insOrderId |
| | | * @return |
| | | */ |
| | | List<InsSample> getSampleByOrderId(Integer insOrderId); |
| | | } |
| | | |
| | | |