package com.fuzamei.dao; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import com.fuzamei.entity.ValuationAccount; import com.fuzamei.mapperInterface.ValuationAccountingMapper; @Repository public class ValuationAccountingDao { @Autowired private ValuationAccountingMapper valuationAccountingMapper; public int findAllInformations() { return valuationAccountingMapper.findAllInformations(); } public List queryValuationAccountingInformation(Map map) { return valuationAccountingMapper.queryValuationAccountingInformation(map); } public void insertInformationIntoTableByAdmin(Map map) { valuationAccountingMapper.insertInformationIntoTableByAdmin(map); } public void updateInformationByBank(Map map) { valuationAccountingMapper.updateInformationByBank(map); } public void insertOperationHistoryInformationToDao(Map map) { valuationAccountingMapper.insertOperationHistoryInformationToDao(map); } public void insertInformationToAttachment(Map map) { valuationAccountingMapper.insertInformationToAttachment(map); } public List checkoutDownloadInformation(int fundId) { return valuationAccountingMapper.checkoutDownloadInformation(fundId); } public int queryIfHasTheSameFundId(Integer fundId) { return valuationAccountingMapper.queryIfHasTheSameFundId(fundId); } public ValuationAccount checkIfFundExists(Integer fundId, String fundName) { return valuationAccountingMapper.checkIfFundExists(fundId,fundName); } public void updateInformationByAdmin(Map map) { valuationAccountingMapper.updateInformationByAdmin(map); } public void updateAttachmentInformationByAdmin(Map map) { valuationAccountingMapper.updateAttachmentInformationByAdmin(map); } public void updateAttachmentInformationByBank(Map map) { valuationAccountingMapper.updateAttachmentInformationByBank(map); } }