MoneyAccountMapper.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.dk.mdm.mapper.mst;
  2. import com.dk.mdm.model.pojo.mst.MoneyAccount;
  3. import com.dk.common.mapper.BaseMapper;
  4. import com.dk.mdm.model.query.mst.MoneyAccountQuery;
  5. import com.dk.mdm.model.response.mst.MoneyAccountResponse;
  6. import com.dk.mdm.model.response.sale.OrderResponse;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. /**
  10. * 资金账户 Mapper
  11. */
  12. @Repository
  13. public interface MoneyAccountMapper extends BaseMapper<MoneyAccount>{
  14. /**
  15. * @desc : 根据条件进行查询
  16. * @author : songy
  17. * @date : 2024/3/1 10:42
  18. */
  19. List<MoneyAccountResponse> selectByCond(MoneyAccountQuery moneyAccountQuery);
  20. /**
  21. * @desc : 根据条件进行查询(数量)
  22. * @author : songy
  23. * @date : 2024/3/1 10:42
  24. */
  25. Long countByCond(MoneyAccountQuery moneyAccountQuery);
  26. /**
  27. * @desc : 查询
  28. * @author : songy
  29. * @date : 2024/3/2 16:19
  30. */
  31. Integer selectDisplayNo(MoneyAccountQuery moneyAccountQuery);
  32. /**
  33. * @desc : 根据Id进行查询
  34. * @author : songy
  35. * @date : 2024-03-03 9:25
  36. */
  37. MoneyAccountResponse selectById(String id);
  38. }