曾成
2020-04-09 7ba6103e8733ad00510a2fec0b6c290de62909d8
StoreService/src/main/java/com/java110/store/dao/IPurchaseApplyServiceDao.java
@@ -1,7 +1,9 @@
package com.java110.store.dao;
import com.java110.dto.purchaseApply.PurchaseApplyDto;
import com.java110.utils.exception.DAOException;
import com.java110.vo.api.purchaseApply.PurchaseApplyDetailVo;
import java.util.List;
import java.util.Map;
@@ -22,6 +24,12 @@
     */
    void saveBusinessPurchaseApplyInfo(Map businessPurchaseApplyInfo) throws DAOException;
    //保存采购明细
    void saveBusinessPurchaseApplyDetailInfo(List<PurchaseApplyDetailVo> list) throws DAOException;
    //保存采购明细
    void savePurchaseApplyDetailInfo(List<PurchaseApplyDetailVo> list) throws DAOException;
    /**
@@ -32,6 +40,11 @@
     * @throws DAOException DAO异常
     */
    List<Map> getBusinessPurchaseApplyInfo(Map info) throws DAOException;
    //查询采购明细business表
    List<Map> getBusinessPurchaseApplyDetailInfo(Map info) throws DAOException;
@@ -46,6 +59,7 @@
    /**
     * 查询采购申请信息(instance过程)
     * 根据bId 查询采购申请信息
@@ -55,6 +69,13 @@
     */
    List<Map> getPurchaseApplyInfo(Map info) throws DAOException;
    List<PurchaseApplyDto> getPurchaseApplyInfo2(Map info) throws DAOException;
    //查询采购明细
    List<Map> getPurchaseApplyDetailInfo(Map info) throws DAOException;
    /**