4e91709732f768fbb94140a7f99fc63aea2fab33.svn-base
1.63 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
53
54
55
56
57
58
59
60
61
62
63
/**
* 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.SRegBusGd;
import com.thinkgem.jeesite.modules.sumdata.entity.datatable.SRegBusSlsq;
import com.thinkgem.jeesite.modules.sumdata.dao.datatable.SRegBusGdDao;
/**
* s_reg_bus_gdService
* @author xuyg
* @version 2017-03-08
*/
@Service
@Transactional(readOnly = true)
public class SRegBusGdService extends CrudService<SRegBusGdDao, SRegBusGd> {
public SRegBusGd get(String id) {
return super.get(id);
}
public SRegBusGd getqxid(String id) {
return dao.getqxid(id);
}
public List<SRegBusGd> findList(SRegBusGd sRegBusGd) {
return super.findList(sRegBusGd);
}
public Page<SRegBusGd> findPage(Page<SRegBusGd> page, SRegBusGd sRegBusGd) {
return super.findPage(page, sRegBusGd);
}
@Transactional(readOnly = false)
public void save(SRegBusGd sRegBusGd) {
super.save(sRegBusGd);
}
@Transactional(readOnly = false)
public void delete(SRegBusGd sRegBusGd) {
super.delete(sRegBusGd);
}
@Transactional(readOnly = false)
public void insert(SRegBusGd sRegBusGd) {
sRegBusGd.preInsert();
dao.insert(sRegBusGd);
}
@Transactional(readOnly = false)
public void update(SRegBusGd sRegBusGd) {
sRegBusGd.preUpdate();
dao.update(sRegBusGd);
}
}