¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.basic.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.basic.dto.IfsInventoryQuantityDto; |
| | | import com.ruoyi.basic.pojo.IfsInventoryQuantity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface IfsInventoryQuantityMapper extends BaseMapper<IfsInventoryQuantity> { |
| | | |
| | | /** |
| | | * æå°æ ç¾æ¥è¯¢ |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | List<IfsInventoryQuantityDto> printLabel(@Param("ids") List<Integer> ids); |
| | | |
| | | /** |
| | | * |
| | | * @param ifsInventoryId |
| | | * @return |
| | | */ |
| | | int selectReportCountById(@Param("ifsInventoryId") Integer ifsInventoryId); |
| | | |
| | | |
| | | /** |
| | | * æ¥è¯¢å½åå£åº¦æ¯å¦åºç°è¿è¯¥ææ |
| | | * @param partDetail åå· |
| | | * @param supplierName ä¾åºååç§° |
| | | * @param startOfNextQuarter å£åº¦å¼å§æ¶é´ |
| | | * @param endOfQuarter å£åº¦ç»ææ¶é´ |
| | | * @return |
| | | */ |
| | | Integer selectIsFirst(@Param("partDetail") String partDetail, |
| | | @Param("supplierName") String supplierName, |
| | | @Param("startOfNextQuarter") LocalDateTime startOfNextQuarter, |
| | | @Param("endOfQuarter") LocalDateTime endOfQuarter); |
| | | } |