a905d6fcfb368161e32c3ae584c221cd49f7af82.svn-base
1.18 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 © 2015-2018 ODM 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.RegBusDyiq;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusDyiqDao;
/**
* 地役权信息维护Service
* @author xuyg
* @version 2015-10-15
*/
@Service
@Transactional(readOnly = true)
public class RegBusDyiqService extends CrudService<RegBusDyiqDao, RegBusDyiq> {
public RegBusDyiq get(String id) {
return super.get(id);
}
public List<RegBusDyiq> findList(RegBusDyiq regBusDyiq) {
return super.findList(regBusDyiq);
}
public Page<RegBusDyiq> findPage(Page<RegBusDyiq> page, RegBusDyiq regBusDyiq) {
return super.findPage(page, regBusDyiq);
}
@Transactional(readOnly = false)
public void save(RegBusDyiq regBusDyiq) {
super.save(regBusDyiq);
}
@Transactional(readOnly = false)
public void delete(RegBusDyiq regBusDyiq) {
super.delete(regBusDyiq);
}
}