Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
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
package com.iailab.module.data.ind.category.service.impl;
 
import com.iailab.framework.common.util.object.BeanUtils;
import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX;
import com.iailab.module.data.ind.category.entity.IndItemCategoryEntity;
import com.iailab.module.data.ind.category.service.IndItemCategoryService;
import com.iailab.module.data.ind.category.vo.IndItemCategoryReqVO;
import com.iailab.module.data.ind.category.dao.IndItemCategoryDao;
import com.iailab.module.data.ind.category.vo.IndItemCategorySaveReqVO;
import com.iailab.module.system.enums.permission.MenuTypeEnum;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.UUID;
 
import static com.iailab.framework.common.exception.util.ServiceExceptionUtil.exception;
import static com.iailab.module.system.enums.ErrorCodeConstants.*;
import static com.iailab.module.data.ind.category.entity.IndItemCategoryEntity.ID_ROOT;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月10日
 */
@Service
@Slf4j
public class IndItemCategoryServiceImpl implements IndItemCategoryService {
 
    @Resource
    private IndItemCategoryDao indItemCategoryDao;
 
    @Override
    public List<IndItemCategoryEntity> getList(IndItemCategoryReqVO reqVO) {
        return indItemCategoryDao.selectList(reqVO);
    }
 
    @Override
    public List<IndItemCategoryEntity> getSimpleList() {
        return indItemCategoryDao.selectList(new LambdaQueryWrapperX<IndItemCategoryEntity>());
    }
 
    @Override
    public void create(IndItemCategorySaveReqVO createReqVO) {
        // 校验父菜单存在
        validateParentMenu(createReqVO.getPid(), null);
 
        // 插入数据库
        IndItemCategoryEntity entity = BeanUtils.toBean(createReqVO, IndItemCategoryEntity.class);
        entity.setId(UUID.randomUUID().toString());
        entity.setCreateTime(new Date());
        indItemCategoryDao.insert(entity);
    }
 
    @Override
    public void update(IndItemCategorySaveReqVO updateReqVO) {
        // 校验父菜单存在
        validateParentMenu(updateReqVO.getPid(), null);
        IndItemCategoryEntity entity = BeanUtils.toBean(updateReqVO, IndItemCategoryEntity.class);
        entity.setUpdateTime(new Date());
        indItemCategoryDao.updateById(entity);
    }
 
    @Override
    public IndItemCategoryEntity get(String id) {
        return indItemCategoryDao.selectById(id);
    }
 
    @Override
    public void delete(String id) {
        indItemCategoryDao.deleteById(id);
    }
 
    private void validateParentMenu(String parentId, String childId) {
        if (parentId == null || ID_ROOT.equals(parentId)) {
            return;
        }
        // 不能设置自己为父菜单
        if (parentId.equals(childId)) {
            throw exception(MENU_PARENT_ERROR);
        }
        IndItemCategoryEntity category = indItemCategoryDao.selectById(parentId);
        // 父菜单不存在
        if (category == null) {
            throw exception(MENU_PARENT_NOT_EXISTS);
        }
    }
}