Package com.jeecms.cms.dao.assist.impl

Source Code of com.jeecms.cms.dao.assist.impl.CmsAdvertisingDaoImpl

package com.jeecms.cms.dao.assist.impl;

import java.util.List;

import org.springframework.stereotype.Repository;

import com.jeecms.cms.dao.assist.CmsAdvertisingDao;
import com.jeecms.cms.entity.assist.CmsAdvertising;
import com.jeecms.common.hibernate3.Finder;
import com.jeecms.common.hibernate3.HibernateBaseDao;
import com.jeecms.common.page.Pagination;

@Repository
public class CmsAdvertisingDaoImpl extends
    HibernateBaseDao<CmsAdvertising, Integer> implements CmsAdvertisingDao {
  public Pagination getPage(Integer siteId, Integer adspaceId,
      Boolean enabled, int pageNo, int pageSize) {
    Finder f = Finder.create("from CmsAdvertising bean where 1=1");
    if (siteId != null && adspaceId == null) {
      f.append(" and bean.site.id=:siteId");
      f.setParam("siteId", siteId);
    } else if (adspaceId != null) {
      f.append(" and bean.adspace.id=:adspaceId");
      f.setParam("adspaceId", adspaceId);
    }
    if (enabled != null) {
      f.append(" and bean.enabled=:enabled");
      f.setParam("enabled", enabled);
    }
    f.append(" order by bean.id desc");
    return find(f, pageNo, pageSize);
  }

  @SuppressWarnings("unchecked")
  public List<CmsAdvertising> getList(Integer adspaceId, Boolean enabled) {
    Finder f = Finder.create("from CmsAdvertising bean where 1=1");
    if (adspaceId != null) {
      f.append(" and bean.adspace.id=:adspaceId");
      f.setParam("adspaceId", adspaceId);
    }
    if (enabled != null) {
      f.append(" and bean.enabled=:enabled");
      f.setParam("enabled", enabled);
    }
    return find(f);
  }

  public CmsAdvertising findById(Integer id) {
    CmsAdvertising entity = get(id);
    return entity;
  }

  public CmsAdvertising save(CmsAdvertising bean) {
    getSession().save(bean);
    return bean;
  }

  public CmsAdvertising deleteById(Integer id) {
    CmsAdvertising entity = super.get(id);
    if (entity != null) {
      getSession().delete(entity);
    }
    return entity;
  }

  @Override
  protected Class<CmsAdvertising> getEntityClass() {
    return CmsAdvertising.class;
  }
}
TOP

Related Classes of com.jeecms.cms.dao.assist.impl.CmsAdvertisingDaoImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.