package com.saye.hospitalgd.mapper; import org.apache.ibatis.annotations.Param; import java.util.HashMap; import java.util.List; /** * 银行对账单下载记录(BankbillGetinfo)表数据库访问层 * * @author makejava * @since 2021-09-10 09:21:53 */ public interface BankbillGetinfoMapper { HashMap findBankbillGetinfoById(HashMap map); List> findBankbillGetinfoList(HashMap map); int insertBankbillGetinfo(HashMap map); int updateBankbillGetinfo(HashMap map); int deleteBankbillGetinfoById(HashMap map); List> findBankbillGetinfoByParam(HashMap map) throws Exception; }