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

package com.example.demo.mapperLink;
import com.example.demo.domain.dou.*;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface DouMapper {
int add(Records Records);
Member searchinfo(Searchinfo jwcode);
Integer searchId(@Param("jwcode")String jwcode);
List<Yve> getYve(Yve yve);
YveTotal getYveTotal(YveTotal yveTotal);
List<String> getIp();
List<Spend> getSpend(Spend spend);
Integer getSpendTotal(SpendTotal spendTotal);
List<Pay> getPay(Pay pay);
List<String> getPayIp();
RechargeTotal getRechargeTotal(RechargeTotal rechargeTotal);
}