chenhj
2 天以前 60264687a654d2e7fc46dc9dc81e4fd663210b78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.business.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.business.dto.OfficialInventoryDto;
import com.ruoyi.business.dto.PendingInventoryDto;
import com.ruoyi.business.entity.InputInventoryRecord;
 
import java.math.BigDecimal;
 
/**
 * <p>
 * 入库记录表 服务类
 * </p>
 *
 * @author chenhj
 * @since 2025-06-14
 */
public interface InputInventoryRecordService extends IService<InputInventoryRecord> {
 
    // 添加入库记录
    int insertInputInventoryRecord(PendingInventoryDto pendingInventoryDto, OfficialInventoryDto officialInventoryDto, BigDecimal quantity);
 
    // 删除入库记录
    int deleteInputInventoryRecord(Long[] ids);
}