提交 | 用户 | 时间
|
a63a4f
|
1 |
package com.iailab.module.data.ind.data.service.impl; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.framework.common.service.impl.BaseServiceImpl; |
|
5 |
import com.iailab.framework.common.util.object.BeanUtils; |
cf757d
|
6 |
import com.iailab.framework.common.util.object.ConvertUtils; |
a63a4f
|
7 |
import com.iailab.module.data.ind.category.entity.IndItemCategoryEntity; |
潘 |
8 |
import com.iailab.module.data.ind.data.dao.IndDataSetDao; |
cf757d
|
9 |
import com.iailab.module.data.ind.data.dto.IndDataSetDTO; |
潘 |
10 |
import com.iailab.module.data.ind.data.dto.IndDataSetFieldDTO; |
a63a4f
|
11 |
import com.iailab.module.data.ind.data.entity.IndDataSetEntity; |
cf757d
|
12 |
import com.iailab.module.data.ind.data.service.IndDataSetFieldService; |
a63a4f
|
13 |
import com.iailab.module.data.ind.data.service.IndDataSetService; |
潘 |
14 |
import com.iailab.module.data.ind.data.vo.IndDataSetPageReqVO; |
|
15 |
import com.iailab.module.data.ind.data.vo.IndDataSetSaveReqVO; |
cf757d
|
16 |
import org.springframework.beans.factory.annotation.Autowired; |
a63a4f
|
17 |
import org.springframework.stereotype.Service; |
潘 |
18 |
import org.springframework.transaction.annotation.Transactional; |
|
19 |
|
|
20 |
import java.util.Date; |
215dbc
|
21 |
import java.util.List; |
a63a4f
|
22 |
import java.util.UUID; |
潘 |
23 |
|
|
24 |
/** |
|
25 |
* @author PanZhibao |
|
26 |
* @Description |
|
27 |
* @createTime 2024年09月10日 |
|
28 |
*/ |
|
29 |
@Service |
|
30 |
public class IndDataSetServiceImpl extends BaseServiceImpl<IndDataSetDao, IndDataSetEntity> implements IndDataSetService { |
cf757d
|
31 |
|
潘 |
32 |
@Autowired |
|
33 |
private IndDataSetFieldService indDataSetFieldService; |
a63a4f
|
34 |
|
潘 |
35 |
|
|
36 |
@Override |
|
37 |
public PageResult<IndDataSetEntity> page(IndDataSetPageReqVO reqVO) { |
|
38 |
return baseDao.selectPage(reqVO); |
|
39 |
} |
|
40 |
|
|
41 |
@Override |
215dbc
|
42 |
public List<IndDataSetEntity> list(IndDataSetPageReqVO reqVO) { |
潘 |
43 |
return baseDao.selectList(); |
|
44 |
} |
|
45 |
|
|
46 |
@Override |
a63a4f
|
47 |
public void create(IndDataSetSaveReqVO createReqVO) { |
潘 |
48 |
IndDataSetEntity entity = BeanUtils.toBean(createReqVO, IndDataSetEntity.class); |
|
49 |
entity.setId(UUID.randomUUID().toString()); |
|
50 |
entity.setCreateTime(new Date()); |
|
51 |
baseDao.insert(entity); |
|
52 |
} |
|
53 |
|
|
54 |
@Override |
|
55 |
public void update(IndDataSetSaveReqVO updateReqVO) { |
|
56 |
IndDataSetEntity entity = BeanUtils.toBean(updateReqVO, IndDataSetEntity.class); |
|
57 |
entity.setUpdateTime(new Date()); |
|
58 |
baseDao.updateById(entity); |
|
59 |
} |
|
60 |
|
|
61 |
@Override |
|
62 |
public IndDataSetEntity get(String id) { |
|
63 |
return baseDao.selectById(id); |
|
64 |
} |
|
65 |
|
|
66 |
@Override |
|
67 |
public void delete(String id) { |
|
68 |
baseDao.deleteById(id); |
|
69 |
} |
cf757d
|
70 |
|
潘 |
71 |
@Override |
|
72 |
public IndDataSetDTO getDet(String id) { |
|
73 |
IndDataSetDTO result = new IndDataSetDTO(); |
|
74 |
IndDataSetEntity dataSet = baseDao.selectById(id); |
|
75 |
result = ConvertUtils.sourceToTarget(dataSet, IndDataSetDTO.class); |
|
76 |
result.setFieldList(ConvertUtils.sourceToTarget(indDataSetFieldService.list(id), IndDataSetFieldDTO.class)); |
|
77 |
return result; |
|
78 |
} |
a63a4f
|
79 |
} |