|
|
|
|
@ -1,9 +1,7 @@
|
|
|
|
|
package org.dromara.wms.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import com.github.yulichang.wrapper.MPJLambdaWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Constants;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import org.dromara.wms.domain.WmsInventoryDetails;
|
|
|
|
|
import org.dromara.wms.domain.vo.WmsInventoryDetailsVo;
|
|
|
|
|
@ -24,4 +22,9 @@ public interface WmsInventoryDetailsMapper extends BaseMapperPlus<WmsInventoryDe
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int workAddUpdateInventory(WmsInventoryDetails inventoryDetails);
|
|
|
|
|
|
|
|
|
|
void updateTableById(@Param("inventoryDetailsId") Long inventoryDetailsId,
|
|
|
|
|
@Param("inStockAmount") Double inStockAmount,
|
|
|
|
|
@Param("nowDate") Date nowDate,
|
|
|
|
|
@Param("userId") Long userId);
|
|
|
|
|
}
|
|
|
|
|
|