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

24 lines
672 B

  1. package com.example.demo.mapperLink;
  2. import com.example.demo.domain.dou.*;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. @Mapper
  7. public interface DouMapper {
  8. int add(Records Records);
  9. Member searchinfo(Searchinfo jwcode);
  10. Integer searchId(@Param("jwcode")String jwcode);
  11. List<Yve> getYve(Yve yve);
  12. YveTotal getYveTotal(YveTotal yveTotal);
  13. List<String> getIp();
  14. List<Spend> getSpend(Spend spend);
  15. Integer getSpendTotal(SpendTotal spendTotal);
  16. List<Pay> getPay(Pay pay);
  17. List<String> getPayIp();
  18. RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
  19. }