zoukankan      html  css  js  c++  java
  • HIbernate 查询拼接参数

    public List<TrailTestModel> findByEid(List<String> trailids, String eid) {
    // TODO Auto-generated method stub
    String hql = " from TrailTestModel where 1=1 ";
    ArrayList<String> count = new ArrayList<String>();
    if (trailids != null && trailids.size() > 0) {
    hql += " and trail.uid in (:trailids) ";
    }
    if (StringUtils.isNotBlank(eid)) {
    hql += " and employee.uid = :eid ";
    count.add(eid);
    }
    Query query = hibernateTemplate.getSessionFactory().getCurrentSession().createQuery(hql);
    Object[] arr = new Object[trailids.size()];
    for (int i = 0; i < trailids.size(); i++) {
    arr[i] = trailids.get(i);
    }
    if (trailids != null && trailids.size() > 0) {
    query.setParameterList("trailids", arr);
    }
    if (StringUtils.isNotBlank(eid)) {
    query.setParameter("eid", eid);
    }
    List<TrailTestModel> list = query.list();
    return list;
    }

    ---------------------------------------------------------------------------------------------------------------------------

    @Override
    public Map<String, List<ZhuanTiModel>> list(Integer currentNo, Integer pageSize, String qc, String yunying_name, Integer toufang_state,
    Integer page_type, Integer zhuanti_state, Integer qcstate, String dept_id) {
    // TODO Auto-generated method stub
    HashMap<String, List<ZhuanTiModel>> map = new HashMap<String, List<ZhuanTiModel>>();
    List<Object> count = new ArrayList<Object>();
    String sql = "select * from t_zhuanti where 1=1 ";
    if (StringUtils.isNotBlank(yunying_name)) {
    sql += " and yunying_name like ? ";
    count.add("%"+yunying_name+"%");
    }
    if (StringUtils.isNotBlank(qc)) {
    sql += " and qc_name = ? ";
    count.add(qc);
    }
    if (toufang_state != null) {
    sql += " and toufang_state= ? ";
    count.add(toufang_state);
    }
    if (zhuanti_state != null) {
    sql += " and zhuanti_url_state=? ";
    count.add(zhuanti_state);
    }
    if (page_type != null) {
    sql += " and page_type=? ";
    count.add(page_type);
    }
    if (qcstate != null) {
    sql += " and qc_state=? ";
    count.add(qcstate);
    }
    if (StringUtils.isNotBlank(dept_id)) {
    sql += " and dept_id=? ";
    count.add(dept_id);
    }
    sql += " order by create_time desc";
    Query query = hibernateTemplate.getSessionFactory().getCurrentSession().createSQLQuery(sql).addEntity(ZhuanTiModel.class);
    for (int i = 0; i < count.size(); i++) {
    query.setParameter(i, count.get(i));
    }
    List<ZhuanTiModel> total = query.list();
    query.setFirstResult((currentNo - 1) * pageSize);
    query.setMaxResults(pageSize);
    List<ZhuanTiModel> list = query.list();
    map.put("total", total);
    map.put("list", list);
    return map;
    }

  • 相关阅读:
    《Java多线程编程核心技术》读后感(五)
    《Java多线程编程核心技术》读后感(四)
    《Java多线程编程核心技术》读后感(三)
    《Java多线程编程核心技术》读后感(二)
    《Java多线程编程核心技术》读后感(一)
    使用httpClient下载网页
    HrrpClient使用
    爬虫基本结构
    仿响应式html:JS来判断页面是在手机端还是在PC端打开的方法
    Python 进程管理工具 Supervisor 使用教程
  • 原文地址:https://www.cnblogs.com/coderdxj/p/6650477.html
Copyright © 2011-2022 走看看