MercFeeCountDayMapper.java 665 B

123456789101112131415161718192021222324252627
  1. package com.xy.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.xy.dto.MercFeeCountDayDto;
  4. import com.xy.entity.MercFeeCountDay;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 商户佣金费用收益每日统计(不含今天) Mapper 接口
  10. * </p>
  11. *
  12. * @author 谭斌
  13. * @since 2024-04-23
  14. */
  15. public interface MercFeeCountDayMapper extends BaseMapper<MercFeeCountDay> {
  16. /**
  17. * 查询指定月份费用总和
  18. *
  19. * @param countByMonth
  20. * @return
  21. */
  22. List<MercFeeCountDayDto.CountByMonthVO> countByMonth(@Param("query") MercFeeCountDayDto.CountByMonth countByMonth);
  23. }