XMTT 7 years ago
parent
commit
d12ad1d14c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ekexiu/portal/question/QuestionDao.java

+ 1 - 1
src/main/java/com/ekexiu/portal/question/QuestionDao.java

@ -188,5 +188,5 @@ public interface QuestionDao {
188 188
	@Column(value = "COUNT(1)", handlerClass = LongHandler.class)
189 189
	@From(Answer.class)
190 190
	@Where("QID IN(SELECT ID FROM QUESTION WHERE STATE='1') AND STATE='1'")
191
	long answerSelfCount(Connection con, String id)throws SQLException;
191
	long answerSelfCount(Connection con, String uid)throws SQLException;
192 192
}