/** * Copyright © 2015-2020 JeePlus All rights reserved. */ package com.jeeplus.modules.sys.service; import java.util.List; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.jeeplus.common.persistence.Page; import com.jeeplus.common.service.CrudService; import com.jeeplus.modules.sys.entity.SystemConfig; import com.jeeplus.modules.sys.dao.SystemConfigDao; /** * 系统配置Service * @author liugf * @version 2016-02-07 */ @Service @Transactional(readOnly = true) public class SystemConfigService extends CrudService { public SystemConfig get(String id) { return super.get(id); } public List findList(SystemConfig systemConfig) { return super.findList(systemConfig); } public Page findPage(Page page, SystemConfig systemConfig) { return super.findPage(page, systemConfig); } @Transactional(readOnly = false) public void save(SystemConfig systemConfig) { super.save(systemConfig); } @Transactional(readOnly = false) public void delete(SystemConfig systemConfig) { super.delete(systemConfig); } }