/**
|
* Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
|
*/
|
package com.jeeplus.modules.sportsign.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.sportsign.entity.SportSign;
|
import com.jeeplus.modules.sportsign.dao.SportSignDao;
|
|
/**
|
* 课外活动签到Service
|
* @author 金龙
|
* @version 2016-09-26
|
*/
|
@Service
|
@Transactional(readOnly = true)
|
public class SportSignService extends CrudService<SportSignDao, SportSign> {
|
|
public SportSign get(String id) {
|
return super.get(id);
|
}
|
|
public List<SportSign> findList(SportSign sportSign) {
|
return super.findList(sportSign);
|
}
|
|
public Page<SportSign> findPage(Page<SportSign> page, SportSign sportSign) {
|
return super.findPage(page, sportSign);
|
}
|
|
@Transactional(readOnly = false)
|
public void save(SportSign sportSign) {
|
super.save(sportSign);
|
}
|
|
@Transactional(readOnly = false)
|
public void delete(SportSign sportSign) {
|
super.delete(sportSign);
|
}
|
|
}
|