All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quhaodian.user.data.dao.impl.UserLabelDaoImpl Maven / Gradle / Ivy

package com.quhaodian.user.data.dao.impl;

import com.quhaodian.data.core.Finder;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import com.quhaodian.data.core.CriteriaDaoImpl;
import com.quhaodian.user.data.dao.UserLabelDao;
import com.quhaodian.user.data.entity.UserLabel;

import java.util.Date;

/**
* Created by imake on 2017年12月06日15:59:13.
*/
@Repository

public class UserLabelDaoImpl extends CriteriaDaoImpl implements UserLabelDao {

	@Override
	public UserLabel findById(Long id) {
	    if (id==null) {
			return null;
		}
		return get(id);
	}

	@Override
	public UserLabel save(UserLabel bean) {

        getSession().save(bean);
		
		
		return bean;
	}

    @Override
	public UserLabel deleteById(Long id) {
		UserLabel entity = super.get(id);
		if (entity != null) {
			getSession().delete(entity);
		}
		return entity;
	}

	@Override
	public UserLabel label(String name) {
		Finder finder=Finder.create();
		finder.append("from UserLabel u where u.name =:name");
		finder.setParam("name",name);
		UserLabel result=	findOne(finder);
		if (result==null){
			result=new UserLabel();
			result.setName(name);
			save(result);
		}
		result.setLastDate(new Date());
		return result;
	}

	@Override
	protected Class getEntityClass() {
		return UserLabel.class;
	}
	
	@Autowired
	public void setSuperSessionFactory(SessionFactory sessionFactory){
	    super.setSessionFactory(sessionFactory);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy