package com.ruoyi.business.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.business.entity.PendingInventory;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* 待入库表 Mapper 接口
|
* </p>
|
*
|
* @author ruoyi
|
* @since 2025-06-04
|
*/
|
@Mapper
|
public interface PendingInventoryMapper extends BaseMapper<PendingInventory> {
|
// 获取待入库记录
|
PendingInventory getPendingInventoryForUpdateById(@Param("id") Long id);
|
}
|