a95ef91282a72883a679cd061c939f31a4852f17.svn-base
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.bus;
import java.util.List;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.service.CrudService;
import com.thinkgem.jeesite.modules.reg.entity.bus.Kc02;
import com.thinkgem.jeesite.modules.reg.dao.bus.Kc02Dao;
/**
* 登簿重复提交信息Service
* @author wb
* @version 2018-08-10
*/
@Service
@Transactional(readOnly = true)
public class Kc02Service extends CrudService<Kc02Dao, Kc02> {
public Kc02 get(String id) {
return super.get(id);
}
public List<Kc02> findList(Kc02 kc02) {
return super.findList(kc02);
}
public Page<Kc02> findPage(Page<Kc02> page, Kc02 kc02) {
return super.findPage(page, kc02);
}
@Transactional(readOnly = false)
public void save(Kc02 kc02) {
super.save(kc02);
}
@Transactional(readOnly = false)
public void delete(Kc02 kc02) {
super.delete(kc02);
}
}