网页特效phttp://www.111cn.net/网页特效p.html target=_blank >jsp教程 关键字模糊查询代码
public page<adtesify> getpage(page<adtesify> page, string searchkey,int flowstatus){
criterion cri;
if(flowstatus==-1)
{
cri =restrictions.like(adtesify.pro_content, searchkey, matchmode.anywhere);
}
else{
cri = restrictions.and(restrictions.like(adtesify.pro_content, searchkey, matchmode.anywhere),
restrictions.eq(adtesify.pro_flowstatus, flowstatus)
);
}
return adtesifydao.findpage(page,cri);
}
现在这个只是实现按关键字(content)查询
时间: 2024-09-18 03:21:01