ValuationAccountingMapper.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package com.fuzamei.mapperInterface;
  2. import java.util.List;
  3. import java.util.Map;
  4. import org.apache.ibatis.annotations.Param;
  5. import com.fuzamei.entity.ValuationAccount;
  6. public interface ValuationAccountingMapper {
  7. int findAllInformations();
  8. List<ValuationAccount> queryValuationAccountingInformation(Map<String, Object> map);
  9. void insertInformationIntoTableByAdmin(Map<String, Object> map);
  10. void updateInformationByBank(Map<String, Object> map);
  11. void insertOperationHistoryInformationToDao(Map<String, Object> map);
  12. void insertInformationToAttachment(Map<String, Object> map);
  13. List<ValuationAccount> checkoutDownloadInformation(int fundId);
  14. int queryIfHasTheSameFundId(Integer fundId);
  15. ValuationAccount checkIfFundExists(@Param("fundId") Integer fundId, @Param("fundName") String fundName);
  16. void updateInformationByAdmin(Map<String, Object> map);
  17. void updateAttachmentInformationByAdmin(Map<String, Object> map);
  18. void updateAttachmentInformationByBank(Map<String, Object> map);
  19. }