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 getModelByForm(WhBusinessEnum businessType, Long businessId); List> getFfOrderByGoodsIdAndDept(Long goodsTemplateId, Long departmentId); List> getGoodsUseInfoByFfOrderAndGoodId(Long goodsTemplateId, Long transBusinessId); /** * 统计商品型号数量 * * @param businessId * @return */ List getGoodsTemplateCountByBusinessId(Long businessId); /** * 统计采购单物品型号数量 * * @param businessId * @return */ List getProcureCountByBusinessId(Long businessId); /** * 根据业务id查询型号信息列表 * * @param businessId * @param procureGoodId * @return */ List getGoodsModelListByBusinessId(Long businessId, Long procureGoodId); List getModelByForm1(WhBusinessEnum whBusinessEnum, Long whFormProcureId); }