| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DappAchieveTreeDao extends BaseMapper<DappAchieveTreeEntity> { |
| | | |
| | | DappAchieveTreeEntity selectByMidNode(@Param("memberId") Long memberId); |
| | | |
| | | List<DappAchieveTreeEntity> selectTreeList(); |
| | | List<DappAchieveTreeEntity> selectTreeListV2(); |
| | | |
| | | DappAchieveTreeEntity selectNewestTreeNode(); |
| | | |
| | | List<DappAchieveTreeEntity> selectLastCountTreeNode(@Param("count") int count); |
| | | |
| | | int updateNodeValidState(); |
| | | } |