luqingyang
2023-10-25 d2048c247c446be08598abf8e1bc11a4ea77be32
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
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;
    }
}