com.quhaodian.notice.data.dao.impl.UserNotificationCatalogDaoImpl Maven / Gradle / Ivy
package com.quhaodian.notice.data.dao.impl;
import com.quhaodian.data.core.CatalogDaoImpl;
import com.quhaodian.notice.data.dao.UserNotificationCatalogDao;
import com.quhaodian.notice.data.entity.UserNotificationCatalog;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
/**
* Created by imake on 2018年01月02日11:12:13.
*/
@Repository
public class UserNotificationCatalogDaoImpl extends CatalogDaoImpl implements UserNotificationCatalogDao {
@Override
public UserNotificationCatalog findById(Integer id) {
if (id == null) {
return null;
}
return get(id);
}
@Override
public UserNotificationCatalog save(UserNotificationCatalog bean) {
add(bean);
return bean;
}
@Override
public UserNotificationCatalog deleteById(Integer id) {
UserNotificationCatalog entity = super.get(id);
if (entity != null) {
getSession().delete(entity);
}
return entity;
}
@Override
protected Class getEntityClass() {
return UserNotificationCatalog.class;
}
@Autowired
public void setSuperSessionFactory(SessionFactory sessionFactory) {
super.setSessionFactory(sessionFactory);
}
}