package com.example.demo.mapperPay; import com.example.demo.domain.dou.Pay; import com.example.demo.domain.dou.RechargeTotal; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface PayMapper { List getPay(Pay pay); List getPayIp(); List getStyle(); RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal); }