| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.ProductResultDto2; |
| | | import com.yuanchu.mom.pojo.InsProduct; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | |
| | | */ |
| | | public interface InsProductMapper extends BaseMapper<InsProduct> { |
| | | |
| | | int selectOrderManDay(Integer orderId); |
| | | |
| | | Map<String, String> selectUserById(Integer userId); |
| | | |
| | | List<ProductResultDto2> getProductAndResult(Integer sampleId); |
| | | |
| | | int updateInspected(@Param("id") Integer id); |
| | | |
| | | IPage<InsProduct> selectNoProducts(Page page, Integer orderId); |
| | | |
| | | int selectInsProductCountByOrderId(int sampleId); |
| | | } |
| | | |
| | | |