无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
 
}