67,550
社区成员




public List findByProperty(String star, String end) {
log.debug("finding IcSaleSq instance with property: " );
try {
String queryHql = "from IcSaleSq as iss where CONVERT(char(20),iss.id.workdate,23) between ? and ? order by iss.id.workdate desc";
return getHibernateTemplate().find(queryHql, star,end);
} catch (RuntimeException re) {
log.error("find by property name failed", re);
throw re;
}
}