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);
|
}
|