| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.basic.dto.IfsInventoryQuantityDto; |
| | | import com.ruoyi.basic.pojo.IfsInventoryQuantity; |
| | | import com.ruoyi.basic.vo.IfsInventoryQuantityVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | * @param ifsInventoryId |
| | | * @return |
| | | */ |
| | | int selectReportCountById(@Param("ifsInventoryId") Integer ifsInventoryId); |
| | | int selectReportCountById(@Param("ifsInventoryId") Long ifsInventoryId); |
| | | |
| | | |
| | | /** |
| | |
| | | @Param("supplierName") String supplierName, |
| | | @Param("startOfNextQuarter") LocalDateTime startOfNextQuarter, |
| | | @Param("endOfQuarter") LocalDateTime endOfQuarter); |
| | | |
| | | List<IfsInventoryQuantityVO> selectSplitOrderList(@Param("partNo")String partNo, |
| | | @Param("lineNo")String lineNo, |
| | | @Param("releaseNo")String releaseNo, |
| | | @Param("receiptNo")Integer receiptNo, |
| | | @Param("orderNo")String orderNo); |
| | | } |