| 发表于:2007-05-24 15:03:433楼 得分:0 |
public list <attend> findbyempanddutyday(employee emp , string dutyday) { object[] args = {emp , dutyday}; return (list <attend> )gethibernatetemplate() .find( "from attend as a where a.employee = ? and a.dutyday = ? " , args); } | | |
|