xiaoyong931011
2021-01-29 f760dee7564a4395b3b29c051955261c72298724
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();
}