📄 grtxldaoimp.java
字号:
package com.wondersgroup.txl.dao.impl;
import java.util.List;
import com.wondersgroup.framework.core.dao.impl.AbstractHibernateDAOImpl;
import com.wondersgroup.txl.bo.GrTxlBo;
import com.wondersgroup.txl.dao.GrTxlDAO;
public class GrTxlDAOImp extends AbstractHibernateDAOImpl implements GrTxlDAO {
public Class getEntityClass() {
return GrTxlBo.class;
}
// public List getRs(String userid,String xm, String dw, String bm){
//
// String hql = "from GrTxlBo where removed=0 and userid like '"+userid+"'";
// if(xm!="")
// {
// hql += " and xm like '%"+xm+"%'";
// }
// if(dw!="")
// {
// hql += " and dw like '%"+dw+"%'";
// }
// if(bm!="")
// {
// hql += " and bm like '%"+bm+"%'";
// }
// return this.getHibernateTemplate().find(hql);
// }
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -