package com.ruoyi.management.mapper;
|
|
import com.ruoyi.management.domain.SlVolumeProductionRk;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* 发起入库管理 Mapper 接口
|
* </p>
|
*
|
* @author hjl
|
* @since 2024-06-25
|
*/
|
@Mapper
|
public interface SlVolumeProductionRkMapper extends BaseMapper<SlVolumeProductionRk> {
|
|
Integer getManagementInventoryList(Long id);
|
|
Double getStoreManagementGoodSmaterialsOne(@Param("id") Long id,@Param("managementId") Long managementId);
|
|
}
|