81,114
社区成员
发帖
与我相关
我的任务
分享
context.put("eduactionInfoList", educationInfoService.findAll());
context.put("buyerInfoList", buyerInfoService.findAll());
context.put("statusList", statusService.findAll());
context.put("interviewersInfoList", interviewersInfoService.findAll());
context.put("typeInfoList", typeInfoService.findAll());
public List findAll() {
log.debug("finding all WizBuyerInfo instances");
try {
String queryString = "from WizBuyerInfo where 1 = 1 and del_mark = 0";
queryString += "order by update_time desc";
Query query = this.getSession().createQuery(queryString);
return query.list();
} catch (RuntimeException re) {
log.error("find all failed", re);
throw re;
}
}