a031e74840b661e2db070f6a2717cf8db43dc1d3.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
53
54
55
56
57
58
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.qjxt;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
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.base.RegBaseZdjbxx;
import com.thinkgem.jeesite.modules.reg.entity.qjxt.BdcZdxx;
import com.thinkgem.jeesite.modules.reg.entity.qjxt.ZdK103;
import com.thinkgem.jeesite.modules.sys.utils.DictUtils;
import com.thinkgem.jeesite.modules.reg.dao.qjxt.BdcZdxxDao;
/**
* 权籍系统宗地信息表单处理Service
* @author xuyg
* @version 2018-11-08
*/
@Service
@Transactional(readOnly = true)
public class BdcZdxxService extends CrudService<BdcZdxxDao, BdcZdxx> {
@Autowired
private ZdK103Service zdK103Service;
public BdcZdxx get(String id) {
return super.get(id);
}
public List<BdcZdxx> findList(BdcZdxx bdcZdxx) {
return super.findList(bdcZdxx);
}
public Page<BdcZdxx> findPage(Page<BdcZdxx> page, BdcZdxx bdcZdxx) {
return super.findPage(page, bdcZdxx);
}
@Transactional(readOnly = false)
public void save(BdcZdxx bdcZdxx) {
super.save(bdcZdxx);
}
@Transactional(readOnly = false)
public void delete(BdcZdxx bdcZdxx) {
super.delete(bdcZdxx);
}
}