package com.ruoyi.inspect.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.basic.dto.IfsInventoryQuantityDto;
|
import com.ruoyi.basic.dto.IfsInventoryQuantitySupplierDto;
|
import com.ruoyi.basic.pojo.IfsInventoryQuantity;
|
import org.springframework.stereotype.Component;
|
|
@Component
|
public interface OutsourcingFinishProductInspectionService {
|
|
/**
|
* 报检查询
|
* @param page
|
* @param ifsInventoryQuantity
|
* @return
|
*/
|
IPage<IfsInventoryQuantity> getWarehouseSubmit(Page page, IfsInventoryQuantity ifsInventoryQuantity);
|
|
/**
|
* 查询已检验
|
* @param page
|
* @param ifsInventoryQuantityDto
|
* @return
|
*/
|
IPage<IfsInventoryQuantitySupplierDto> getIfsByOver(Page<IfsInventoryQuantitySupplierDto> page, IfsInventoryQuantitySupplierDto ifsInventoryQuantityDto);
|
|
/**
|
* 查询检验值
|
* @param page
|
* @param ifsInventoryQuantityDto
|
* @return
|
*/
|
IPage<IfsInventoryQuantityDto> getIfsByStateOne(IPage<IfsInventoryQuantityDto> page, IfsInventoryQuantityDto ifsInventoryQuantityDto);
|
|
}
|