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

17 lines
392 B

4 weeks ago
4 weeks ago
  1. package com.example.demo.mapperPay;
  2. import com.example.demo.domain.dou.Pay;
  3. import com.example.demo.domain.dou.RechargeTotal;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. @Mapper
  7. public interface PayMapper {
  8. List<Pay> getPay(Pay pay);
  9. List<String> getPayIp();
  10. List<String> getStyle();
  11. RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
  12. }