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

package com.example.demo.sevice;
import com.example.demo.domain.dou.*;
import com.example.demo.domain.vo.RechargeVo;
import org.springframework.stereotype.Service;
import java.util.List;
public interface DouService {
int add(Records records) throws Exception;
Member searchinfo(Searchinfo jwcode) throws Exception;
List<Yve> getYve(Yve yve);
YveTotal getYveTotal(YveTotal yveTotal);
List<String> getIp();
Object searchForPage(Integer pageNum, Integer pageSize, Yve yve);
List<String> getStyle();
List<String> getPayIp();
List<Pay> getPay(Pay pay);
Object searchPay(Integer pageNum, Integer pageSize, Pay pay);
List<Spend> getSpend(Spend spend);
Object searchSpend(Integer pageNum, Integer pageSize, Spend spend);
Integer getSpendTotal(SpendTotal spendTotal);
RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
List<Pay> SearchPay(Pay pay);
List<String> SearchStyle();
List<String> SearchPayIp();
Object SearchPay(Integer pageNum, Integer pageSize, Pay pay);
Total getTotal(Total total);
public List<String> getType();
}