package com.lh.mapper; import com.lh.bean.Voter; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface VoterMapper { // 查询用户今日投票信息 List countVotesToday(@Param("jwcode") String jwcode); //插入投票记录 void insertVote(@Param("jwcode") String jwcode, @Param("candidateJwcode") String candidateJwcode,@Param("name") String namne); //根据候选人的jwcode查询投票记录 List getVotesByCandidate(@Param("candidateJwcode") String candidateJwcode); }