1435fa4ad14cb72ea778f6eacee3972ed23304fd.svn-base
2.19 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
64
65
66
67
68
69
70
71
72
73
74
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.test.service;
import java.util.List;
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.common.utils.StringUtils;
import com.thinkgem.jeesite.test.entity.TestDataMain;
import com.thinkgem.jeesite.test.dao.TestDataMainDao;
import com.thinkgem.jeesite.test.entity.TestDataChild;
import com.thinkgem.jeesite.test.dao.TestDataChildDao;
/**
* 主子表生成Service
* @author ThinkGem
* @version 2015-04-06
*/
@Service
@Transactional(readOnly = true)
public class TestDataMainService extends CrudService<TestDataMainDao, TestDataMain> {
@Autowired
private TestDataChildDao testDataChildDao;
public TestDataMain get(String id) {
TestDataMain testDataMain = super.get(id);
testDataMain.setTestDataChildList(testDataChildDao.findList(new TestDataChild(testDataMain)));
return testDataMain;
}
public List<TestDataMain> findList(TestDataMain testDataMain) {
return super.findList(testDataMain);
}
public Page<TestDataMain> findPage(Page<TestDataMain> page, TestDataMain testDataMain) {
return super.findPage(page, testDataMain);
}
@Transactional(readOnly = false)
public void save(TestDataMain testDataMain) {
super.save(testDataMain);
for (TestDataChild testDataChild : testDataMain.getTestDataChildList()){
if (testDataChild.getId() == null){
continue;
}
if (TestDataChild.DEL_FLAG_NORMAL.equals(testDataChild.getDelFlag())){
if (StringUtils.isBlank(testDataChild.getId())){
testDataChild.setTestDataMain(testDataMain);
testDataChild.preInsert();
testDataChildDao.insert(testDataChild);
}else{
testDataChild.preUpdate();
testDataChildDao.update(testDataChild);
}
}else{
testDataChildDao.delete(testDataChild);
}
}
}
@Transactional(readOnly = false)
public void delete(TestDataMain testDataMain) {
super.delete(testDataMain);
testDataChildDao.delete(new TestDataChild(testDataMain));
}
}