futian.liu
2023-12-11 6586db1ec90fd6fbf0e4c7795137379b80ee31c1
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.consum.base.service;
 
import java.util.List;
 
import com.consum.base.pojo.response.FormInventoryGoodsVO;
import com.consum.model.po.LWhFormInventoryGoods;
import com.walker.jdbc.service.BaseService;
 
/**
 * LWhFormInventoryGoodsService
 *
 * @author asus
 * @version 2023/12/11 10:28
 **/
public interface LWhFormInventoryGoodsService extends BaseService {
    /**
     * 根据盘点单id查询盘点物品
     * 
     * @param id
     * @return
     */
    List<LWhFormInventoryGoods> getByInventoryId(Long id);
 
    /**
     * 插入盘点物品信息
     * 
     * @param inventoryGoodsList
     * @param inventoryId
     * @return
     */
    List<FormInventoryGoodsVO> add(List<FormInventoryGoodsVO> inventoryGoodsList, Long inventoryId);
 
    /**
     * 批量更新盘点物品信息
     * 
     * @param inventoryGoodsList
     * @return
     */
    int updateInventoryGoods(List<FormInventoryGoodsVO> inventoryGoodsList);
}