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

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<Pay> getPay(Pay pay);
List<String> getPayIp();
List<String> getStyle();
RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
}