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.
|
|
package com.example.demo.mapper.coin;
import com.example.demo.domain.entity.GOrder;import com.example.demo.domain.entity.UserRegionWallet;import com.example.demo.domain.entity.UserWalletRecord;import com.example.demo.domain.entity.Wallet;import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/** * @program: GOLD * @ClassName WalletMapper * @description: * @author: huangqizhen * @create: 2026−03-06 13:56 * @Version 1.0 **/@Mapperpublic interface WalletMapper { void updateWallet(UserRegionWallet userRegionWallet); UserRegionWallet selectWallet(Integer jwcode, Integer walletId); List<UserWalletRecord> selectWalletRecord(Integer jwcode, String orderCode); void updateWalletRecord(Integer id); GOrder MysqlConnection(String linkId);}
|