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();
|
}
|