|
@@ -1,25 +1,20 @@
|
|
|
package com.persagy.dmp.rwd.digital.controller;
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
-import cn.hutool.extra.spring.SpringUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
-import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
+import com.persagy.dmp.basic.utils.QueryCriteriaHelper;
|
|
|
import com.persagy.dmp.common.constant.CommonConstant;
|
|
|
import com.persagy.dmp.common.constant.ResponseCode;
|
|
|
-import com.persagy.dmp.common.constant.ValidEnum;
|
|
|
-import com.persagy.dmp.common.context.AppContext;
|
|
|
import com.persagy.dmp.common.exception.BusinessException;
|
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
|
import com.persagy.dmp.common.utils.ParamCheckUtil;
|
|
|
import com.persagy.dmp.common.utils.ResultHelper;
|
|
|
import com.persagy.dmp.digital.entity.ObjectRelation;
|
|
|
import com.persagy.dmp.mybatis.utils.ConditionUtil;
|
|
|
-import com.persagy.dmp.basic.utils.QueryCriteriaHelper;
|
|
|
import com.persagy.dmp.rwd.digital.service.IObjectRelationService;
|
|
|
-import org.apache.commons.lang.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -46,11 +41,8 @@ public class ObjectRelationController {
|
|
|
if(criteria == null) {
|
|
|
throw new BusinessException(ResponseCode.A0400.getCode(), ResponseCode.A0400.getDesc());
|
|
|
}
|
|
|
- //基础参数校验
|
|
|
- // ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE,CommonConstant.QUERY_PROJECTID);
|
|
|
// 2021年9月8日18:23:25 放开单项目限制
|
|
|
ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE);
|
|
|
-
|
|
|
QueryWrapper<ObjectRelation> wrapper = new QueryWrapper<>();
|
|
|
// 添加所属项目条件
|
|
|
ConditionUtil.ensureProjectCriteriaDirectly(wrapper);
|
|
@@ -58,68 +50,48 @@ public class ObjectRelationController {
|
|
|
QueryCriteriaHelper.toWrapper(wrapper, criteria, ObjectRelation.class);
|
|
|
Page page = QueryCriteriaHelper.toPage(criteria);
|
|
|
if(criteria.isOnlyCount()) {
|
|
|
- Integer total = service.queryCount(wrapper);
|
|
|
+ Integer total = service.count(wrapper);
|
|
|
page.setTotal(total);
|
|
|
} else {
|
|
|
- page = service.queryByCondition(QueryCriteriaHelper.toPage(criteria), wrapper);
|
|
|
+ page = service.page(page, wrapper);
|
|
|
}
|
|
|
return ResultHelper.multi(page.getRecords(), page.getTotal());
|
|
|
}
|
|
|
|
|
|
@PostMapping("/createOne")
|
|
|
public CommonResult<ObjectRelation> create(@Valid @RequestBody ObjectRelation vo){
|
|
|
- //基础参数校验
|
|
|
ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE,CommonConstant.QUERY_PROJECTID);
|
|
|
- List<ObjectRelation> voList = CollUtil.newArrayList(vo);
|
|
|
- //创建默认条件
|
|
|
- createDefaultValue(voList);
|
|
|
- //新增对象关系
|
|
|
- service.insert(voList);
|
|
|
+ service.save(CollUtil.newArrayList(vo));
|
|
|
return ResultHelper.single(vo);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/create")
|
|
|
public CommonResult<List<ObjectRelation>> createBatch(@Valid @RequestBody List<ObjectRelation> voList){
|
|
|
- //基础参数校验
|
|
|
ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE,CommonConstant.QUERY_PROJECTID);
|
|
|
- //创建默认条件
|
|
|
- createDefaultValue(voList);
|
|
|
- voList = service.insert(voList);
|
|
|
- //批量新增对象关系
|
|
|
+ service.save(voList);
|
|
|
return ResultHelper.multi(voList);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/updateOne")
|
|
|
- public CommonResult<ObjectRelation> update(@Valid @RequestBody ObjectRelation vo) throws Exception{
|
|
|
- //基础参数校验
|
|
|
+ public CommonResult<ObjectRelation> update(@Valid @RequestBody ObjectRelation vo) {
|
|
|
ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE,CommonConstant.QUERY_PROJECTID);
|
|
|
- List<ObjectRelation> voList = CollUtil.newArrayList(vo);
|
|
|
- //修改默认条件
|
|
|
- createDefaultValue(voList);
|
|
|
- //修改对象关系
|
|
|
- service.update(voList);
|
|
|
+ service.save(CollUtil.newArrayList(vo));
|
|
|
return ResultHelper.single(vo);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/update")
|
|
|
- public CommonResult<List<ObjectRelation>> updateBatch(@Valid @RequestBody List<ObjectRelation> voList) throws Exception{
|
|
|
- //基础参数校验
|
|
|
+ public CommonResult<List<ObjectRelation>> updateBatch(@Valid @RequestBody List<ObjectRelation> voList){
|
|
|
ParamCheckUtil.checkParam(CommonConstant.QUERY_GROUPCODE,CommonConstant.QUERY_PROJECTID);
|
|
|
- //修改默认条件
|
|
|
- createDefaultValue(voList);
|
|
|
- //批量修改对象关系
|
|
|
- voList = service.update(voList);
|
|
|
+ service.save(voList);
|
|
|
return ResultHelper.multi(voList);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/deleteOne")
|
|
|
public CommonResult delete(@RequestBody String id){
|
|
|
- QueryCriteria queryCriteria = new QueryCriteria();
|
|
|
- ObjectMapper objectMapper = SpringUtil.getBean(ObjectMapper.class);
|
|
|
- ObjectNode objectNode = objectMapper.createObjectNode();
|
|
|
- objectNode.put(ObjectRelation.PROP_ID,id);
|
|
|
- queryCriteria.setCriteria(objectNode);
|
|
|
- this.deleteBatch(queryCriteria);
|
|
|
+ if(StrUtil.isBlank(id)) {
|
|
|
+ throw new BusinessException(ResponseCode.A0400.getCode(), ResponseCode.A0400.getDesc());
|
|
|
+ }
|
|
|
+ service.removeById(id);
|
|
|
return ResultHelper.success();
|
|
|
}
|
|
|
|
|
@@ -139,30 +111,6 @@ public class ObjectRelationController {
|
|
|
// 转换查询条件
|
|
|
QueryCriteriaHelper.toWrapper(wrapper, criteria, ObjectRelation.class);
|
|
|
List<ObjectRelation> delList = service.delete(wrapper);
|
|
|
- return ResultHelper.multi(delList,delList.size());
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建默认条件
|
|
|
- * @param voList
|
|
|
- */
|
|
|
- private void createDefaultValue(List<ObjectRelation> voList){
|
|
|
- String groupCode = AppContext.getContext().getGroupCode();
|
|
|
- if(StringUtils.isEmpty(groupCode)){
|
|
|
- //默认集团
|
|
|
- groupCode = CommonConstant.DEFAULT_ID;
|
|
|
- }
|
|
|
- String projectId = AppContext.getContext().getProjectId();
|
|
|
- if(StringUtils.isEmpty(projectId)){
|
|
|
- //默认项目
|
|
|
- projectId = CommonConstant.DEFAULT_ID;
|
|
|
- }
|
|
|
- for (ObjectRelation vo : voList) {
|
|
|
- vo.setGroupCode(groupCode);
|
|
|
- vo.setProjectId(projectId);
|
|
|
- if(vo.getValid() == null) {
|
|
|
- vo.setValid(ValidEnum.TRUE.getType());
|
|
|
- }
|
|
|
- }
|
|
|
+ return ResultHelper.multi(delList);
|
|
|
}
|
|
|
}
|