public int getMaxScoreByJfEventIdNumber(Integer jfEventId) {
int numberValue=0;
String hql = "from JfAuction where jfEvent.id =:jfEventId";
Finder finder = new Finder(hql);
finder.setParam("jfEventId", jfEventId);
List<JfAuction> list=jfAuctionDao.find(finder);
if(list!=null && list.size()>0){
numberValue=list.size();
}
return numberValue;
}