黎星凯
2024-04-15 62b6a7fac3f2acde70b578431147c4a01f19c182
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
41
42
43
44
45
46
47
48
package com.consum.base.service;
 
import java.util.List;
import java.util.Map;
 
import com.consum.base.core.WhBusinessEnum;
import com.consum.base.pojo.dto.GoodModelInfoDTO;
import com.consum.base.pojo.response.GoodsTemplateCountVO;
import com.consum.model.po.LWhProcureModel;
import com.walker.jdbc.service.BaseService;
 
public interface LWhProcureModelService extends BaseService {
 
    List<LWhProcureModel> getModelByForm(WhBusinessEnum businessType, Long businessId);
 
    List<Map<String, Object>> getFfOrderByGoodsIdAndDept(Long goodsTemplateId, Long departmentId);
 
    List<Map<String, Object>> getGoodsUseInfoByFfOrderAndGoodId(Long goodsTemplateId, Long transBusinessId);
 
    /**
     * 统计商品型号数量
     * 
     * @param businessId
     * @return
     */
    List<GoodsTemplateCountVO> getGoodsTemplateCountByBusinessId(Long businessId);
 
    /**
     * 统计采购单物品型号数量
     * 
     * @param businessId
     * @return
     */
    List<GoodsTemplateCountVO> getProcureCountByBusinessId(Long businessId);
 
    /**
     * 根据业务id查询型号信息列表
     *
     * @param businessId
     * @param procureGoodId
     * @return
     */
    List<GoodModelInfoDTO> getGoodsModelListByBusinessId(Long businessId, Long procureGoodId);
 
    List<LWhProcureModel> getModelByForm1(WhBusinessEnum whBusinessEnum, Long whFormProcureId);
 
 
}