| | |
| | | import com.ruoyi.inspect.dto.ProductResultDto2; |
| | | import com.ruoyi.inspect.dto.SampleProductRawAnalysisDto; |
| | | import com.ruoyi.inspect.pojo.InsProduct; |
| | | import com.ruoyi.inspect.pojo.InsProductDeviationWarningDetail; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @createDate 2024-03-08 09:45:03 |
| | | * @Entity com.yuanchu.mom.pojo.InsProduct |
| | | */ |
| | | @Mapper |
| | | public interface InsProductMapper extends BaseMapper<InsProduct> { |
| | | |
| | | int selectOrderManDay(@Param("orderId") Integer orderId); |
| | |
| | | * @param supplierName |
| | | * @return |
| | | */ |
| | | List<InsProductAnalysisDto> selectAnalysis(@Param("insProduct") InsProduct insProduct, @Param("supplierName") String supplierName); |
| | | List<InsProductDeviationWarningDetail> selectAnalysis(@Param("insProduct") InsProduct insProduct, @Param("supplierName") String supplierName); |
| | | } |
| | | |
| | | |