voteservice.java
来自「struts2 spring2.5 hibernate3.0 eclipse投票」· Java 代码 · 共 24 行
JAVA
24 行
package sunyang.vote.service;
import java.util.List;
import sunyang.vote.domain.Vote;
public interface VoteService {
public void addVote(Vote vote);
public Integer findIdByTitle(Vote vote);
public List<Vote> findVote();
public Vote findVoteById(Integer voteId);
public void updateVote(Vote vote);
public List<Vote> findVoteByTitle(Vote vote);
public Long findVoteCountByType(Integer type);
public Long findVoteCount();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?