zainali5120
2021-02-25 9219e18a9b2fb06b95b5c881b057d3fde7270ca3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.xcong.excoin.modules.documentary.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface FollowTraderInfoDao extends BaseMapper<FollowTraderInfoEntity> {
 
    FollowTraderInfoEntity selectFollowTraderInfoEntityBytreaderId(@Param("traderId")Long traderId);
 
    FollowTraderInfoEntity selectTraderInfoByMemberId(@Param("memberId") Long memberId);
 
    FollowTraderInfoEntity selectTraderInfoByOrderId(@Param("orderId") Long orderId);
 
    List<FollowTraderInfoEntity> selectAllTraderInfo();
}