标签:
public JfAuction getMaxScoreByJfEventId(Integer jfEventId) {
JfAuction jfAuction=null;
String hql = "from JfAuction where jfEvent.id =:jfEventId and score = (select max(score) 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){
jfAuction=list.get(0);
}
return jfAuction;
}
标签:
原文地址:http://www.cnblogs.com/zifashaonian10000/p/4218267.html