d200cb524f1510c897109398f8531d9c3c7aaa14.svn-base
1.48 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
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.base;
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.dao.base.DmlRecordsDao;
import com.thinkgem.jeesite.modules.reg.entity.base.DmlRecords;
/**
* 数据库dml记录Service
* @author hsg
* @version 2019-11-07
*/
@Service
public class DmlRecordsService extends CrudService<DmlRecordsDao, DmlRecords> {
public DmlRecords get(String id) {
return super.get(id);
}
public List<DmlRecords> findList(DmlRecords dmlRecords) {
return super.findList(dmlRecords);
}
public Page<DmlRecords> findPage(Page<DmlRecords> page, DmlRecords dmlRecords) {
return super.findPage(page, dmlRecords);
}
public void save(DmlRecords dmlRecords) {
super.save(dmlRecords);
}
@Transactional(readOnly = false)
public void delete(DmlRecords dmlRecords) {
super.delete(dmlRecords);
}
public String fhList(DmlRecords dmlRecords) {
return dao.fhList(dmlRecords);
}
public void update1(DmlRecords dmlRecords) {
dao.update1(dmlRecords);
}
public void update2(DmlRecords dmlRecords) {
dao.update2(dmlRecords);
}
public void update3(DmlRecords dmlRecords) {
dao.update3(dmlRecords);
}
}