You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
627 B

  1. package com.example.demo.mapper.pay;
  2. import com.example.demo.domain.vo.bean.BeanOnlineRechargeInfo;
  3. import com.example.demo.domain.vo.bean.GoldBean;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * @program: gold-java
  8. * @ClassName BeanRechargeMapper
  9. * @description:
  10. * @author: Double
  11. * @create: 202507-30 15:43
  12. * @Version 1.0
  13. **/
  14. @Mapper
  15. public interface BeanRechargeMapper3 {
  16. List<BeanOnlineRechargeInfo> selectByOnline(BeanOnlineRechargeInfo beanOnlineRechargeInfo);
  17. List<String> onlineMarket();
  18. GoldBean selectOnlineSum(BeanOnlineRechargeInfo beanOnlineRechargeInfo);
  19. }