金币系统后端
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.

34 lines
1.1 KiB

4 weeks ago
3 weeks ago
  1. package com.example.demo.sevice;
  2. import com.example.demo.domain.dou.*;
  3. import com.example.demo.domain.vo.RechargeVo;
  4. import org.springframework.stereotype.Service;
  5. import java.util.List;
  6. public interface DouService {
  7. int add(Records records) throws Exception;
  8. Member searchinfo(Searchinfo jwcode) throws Exception;
  9. List<Yve> getYve(Yve yve);
  10. YveTotal getYveTotal(YveTotal yveTotal);
  11. List<String> getIp();
  12. Object searchForPage(Integer pageNum, Integer pageSize, Yve yve);
  13. List<String> getStyle();
  14. List<String> getPayIp();
  15. List<Pay> getPay(Pay pay);
  16. Object searchPay(Integer pageNum, Integer pageSize, Pay pay);
  17. List<Spend> getSpend(Spend spend);
  18. Object searchSpend(Integer pageNum, Integer pageSize, Spend spend);
  19. Integer getSpendTotal(SpendTotal spendTotal);
  20. RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
  21. List<Pay> SearchPay(Pay pay);
  22. List<String> SearchStyle();
  23. List<String> SearchPayIp();
  24. Object SearchPay(Integer pageNum, Integer pageSize, Pay pay);
  25. Total getTotal(Total total);
  26. public List<String> getType();
  27. }