TestTreeService.java
1.11 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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.test.service;
import java.util.List;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.thinkgem.jeesite.common.service.TreeService;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.test.entity.TestTree;
import com.thinkgem.jeesite.test.dao.TestTreeDao;
/**
* 树结构生成Service
* @author ThinkGem
* @version 2015-04-06
*/
@Service
@Transactional(readOnly = true)
public class TestTreeService extends TreeService<TestTreeDao, TestTree> {
public TestTree get(String id) {
return super.get(id);
}
public List<TestTree> findList(TestTree testTree) {
if (StringUtils.isNotBlank(testTree.getParentIds())){
testTree.setParentIds(","+testTree.getParentIds()+",");
}
return super.findList(testTree);
}
@Transactional(readOnly = false)
public void save(TestTree testTree) {
super.save(testTree);
}
@Transactional(readOnly = false)
public void delete(TestTree testTree) {
super.delete(testTree);
}
}