package com.consum.base.service;
|
|
import com.walker.jdbc.service.BaseServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @ClassName LWhGoodsService
|
* @Author cy
|
* @Date 2023/10/24
|
* @Description
|
* @Version 1.0
|
**/
|
@Service
|
public class LWhGoodsService extends BaseServiceImpl {
|
|
|
/**
|
* @param warehouseId 所属仓库仓库编号
|
* @param baseGoodsModelsId 规格型号编号
|
* @param states (0=在途调拨;1=入库未分发;2=已下发;3=报废)
|
* @return 查询某个型号在仓库中的数量
|
*/
|
private static String query_Goods_Model_Num = "";
|
|
public int queryGoodsModelNum(long warehouseId, long baseGoodsModelsId, Short states) {
|
|
|
return 0;
|
}
|
}
|