zyy
2025-12-23 e0c284c3f848e6e528d2f6e63c4da1148471048a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yami.trading.service.user;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.yami.trading.bean.model.FollowWalletExtend;
 
import java.io.Serializable;
import java.util.List;
 
public interface FollowWalletExtendService extends IService<FollowWalletExtend> {
 
    List<FollowWalletExtend> findByUserIdAndWallettype(String userId, String wallettype);
 
    List<FollowWalletExtend> findByUserIdAndWallettype(String partyId, List<String> list_symbol);
 
    List<FollowWalletExtend> findByUserId(Serializable partyId);
}