327cbaa27820138eb9a56b1da4f9248de97bc3f1.svn-base
1.56 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
48
49
50
51
52
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.sumdata.service.datatable;
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.sumdata.entity.datatable.SRegBaseZbinfozrz;
import com.thinkgem.jeesite.modules.sumdata.entity.datatable.SRegBaseZrzchxx;
import com.thinkgem.jeesite.modules.sumdata.dao.datatable.SRegBaseZbinfozrzDao;
/**
* s_reg_base_zbinfozrzService
* @author xuyg
* @version 2017-03-07
*/
@Service
@Transactional(readOnly = true)
public class SRegBaseZbinfozrzService extends CrudService<SRegBaseZbinfozrzDao, SRegBaseZbinfozrz> {
public SRegBaseZbinfozrz get(String id) {
return super.get(id);
}
public SRegBaseZbinfozrz getqxid(String id) {
return dao.getqxid(id);
}
public List<SRegBaseZbinfozrz> findList(SRegBaseZbinfozrz sRegBaseZbinfozrz) {
return super.findList(sRegBaseZbinfozrz);
}
public Page<SRegBaseZbinfozrz> findPage(Page<SRegBaseZbinfozrz> page, SRegBaseZbinfozrz sRegBaseZbinfozrz) {
return super.findPage(page, sRegBaseZbinfozrz);
}
@Transactional(readOnly = false)
public void save(SRegBaseZbinfozrz sRegBaseZbinfozrz) {
super.save(sRegBaseZbinfozrz);
}
@Transactional(readOnly = false)
public void delete(SRegBaseZbinfozrz sRegBaseZbinfozrz) {
super.delete(sRegBaseZbinfozrz);
}
}