cb71162c5fd535964f413d7a73a0df6cc8429605.svn-base
2.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.bus;
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.modules.reg.entity.bus.RegBusSjmain;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusSjmainDao;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusSjchild;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusSjchildDao;
/**
* 收件信息(主子表)维护Service
* @author xuyg
* @version 2015-11-24
*/
@Service
@Transactional(readOnly = true)
public class RegBusSjmainService extends CrudService<RegBusSjmainDao, RegBusSjmain> {
@Autowired
private RegBusSjchildDao regBusSjchildDao;
public RegBusSjmain get(String id) {
RegBusSjmain regBusSjmain = super.get(id);
regBusSjmain.setRegBusSjchildList(regBusSjchildDao.findList(new RegBusSjchild(regBusSjmain)));
return regBusSjmain;
}
public List<RegBusSjmain> findList(RegBusSjmain regBusSjmain) {
return super.findList(regBusSjmain);
}
public Page<RegBusSjmain> findPage(Page<RegBusSjmain> page, RegBusSjmain regBusSjmain) {
return super.findPage(page, regBusSjmain);
}
@Transactional(readOnly = false)
public void save(RegBusSjmain regBusSjmain) {
super.save(regBusSjmain);
for (RegBusSjchild regBusSjchild : regBusSjmain.getRegBusSjchildList()){
if (regBusSjchild.getId() == null){
continue;
}
if (RegBusSjchild.DEL_FLAG_NORMAL.equals(regBusSjchild.getDelFlag())){
if (StringUtils.isBlank(regBusSjchild.getId())){
regBusSjchild.setMainId(regBusSjmain);
regBusSjchild.preInsert();
regBusSjchildDao.insert(regBusSjchild);
}else{
regBusSjchild.preUpdate();
regBusSjchildDao.update(regBusSjchild);
}
}else{
regBusSjchildDao.delete(regBusSjchild);
}
}
}
public void savesjmain(RegBusSjmain regBusSjmain) {
super.save(regBusSjmain);
}
public void savesjchild(RegBusSjchild regBusSjchild) {
if (StringUtils.isBlank(regBusSjchild.getId())){
regBusSjchild.preInsert();
regBusSjchildDao.insertsjchild(regBusSjchild);
}else{
regBusSjchild.preUpdate();
regBusSjchildDao.update(regBusSjchild);
}
}
@Transactional(readOnly = false)
public void delete(RegBusSjmain regBusSjmain) {
super.delete(regBusSjmain);
regBusSjchildDao.delete(new RegBusSjchild(regBusSjmain));
}
@Transactional(readOnly = false)
public void deletesjchild(RegBusSjmain regBusSjmain) {
regBusSjchildDao.deletesjchild(new RegBusSjchild(regBusSjmain));
}
public List<RegBusSjchild> findlistsjchild(RegBusSjchild regBusSjchild) {
return regBusSjchildDao.findList(regBusSjchild);
}
}