package com.ruoyi.business.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.business.entity.InventorySummary;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* 库存汇总表 Mapper 接口
|
* </p>
|
*
|
* @author chenhj
|
* @since 2025-06-14
|
*/
|
@Mapper
|
public interface InventorySummaryMapper extends BaseMapper<InventorySummary> {
|
InventorySummary getInventorySummaryForUpdateById(@Param("id") Long id);
|
InventorySummary getInventorySummaryForUpdateByInventoryIdAndType(@Param("inventoryId") Long inventoryId, @Param("type") String type);
|
}
|