361fc068435778caf386859a30aa48c148d1b45f.svn-base
1.47 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 © 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.config.Global;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.service.CrudService;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusGd;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusGdDao;
/**
* 归档信息维护Service
* @author xuyg
* @version 2015-10-09
*/
@Service
@Transactional(readOnly = true)
public class RegBusGdService extends CrudService<RegBusGdDao, RegBusGd> {
public RegBusGd get(String id) {
return super.get(id);
}
public List<RegBusGd> findList(RegBusGd regBusGd) {
return super.findList(regBusGd);
}
public List<RegBusGd> findListgdwz(RegBusGd regBusGd) {
return dao.findListgdwz(regBusGd);
}
public List<RegBusGd> findMaxjzh(RegBusGd regBusGd) {
if("oracle".equals(Global.getDbName())){
return dao.OraclefindMaxjzh(regBusGd);
}else{
return dao.findMaxjzh(regBusGd);
}
}
public Page<RegBusGd> findPage(Page<RegBusGd> page, RegBusGd regBusGd) {
return super.findPage(page, regBusGd);
}
@Transactional(readOnly = false)
public void save(RegBusGd regBusGd) {
super.save(regBusGd);
}
@Transactional(readOnly = false)
public void delete(RegBusGd regBusGd) {
super.delete(regBusGd);
}
}