package com.fuzamei.mapperInterface; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; import com.fuzamei.entity.ValuationAccount; public interface ValuationAccountingMapper { int findAllInformations(); List queryValuationAccountingInformation(Map map); void insertInformationIntoTableByAdmin(Map map); void updateInformationByBank(Map map); void insertOperationHistoryInformationToDao(Map map); void insertInformationToAttachment(Map map); List checkoutDownloadInformation(int fundId); int queryIfHasTheSameFundId(Integer fundId); ValuationAccount checkIfFundExists(@Param("fundId") Integer fundId, @Param("fundName") String fundName); void updateInformationByAdmin(Map map); void updateAttachmentInformationByAdmin(Map map); void updateAttachmentInformationByBank(Map map); }