|
@@ -42,6 +42,7 @@ import com.persagy.dmp.rwd.digital.service.IObjectDigitalService;
|
|
|
import com.persagy.dmp.rwd.parser.service.InfoDataFactory;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
@@ -458,32 +459,20 @@ public class ObjectDigitalServiceImpl extends ServiceImpl<ObjectDigitalMapper, O
|
|
|
return ResultHelper.multi(new ArrayList<>());
|
|
|
}
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
- * 查询已有的对象类型
|
|
|
- * @param queryCriteria
|
|
|
+ * 查询对象类型
|
|
|
+ * @param queryWrapper 查询条件
|
|
|
* @return
|
|
|
- * @throws Exception
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<String> queryObjectClassCode(QueryCriteria queryCriteria) throws Exception {
|
|
|
- ObjectNode criteria = queryCriteria.getCriteria();
|
|
|
- //查询存在的对象类型
|
|
|
- RequestData requestData = new RequestData();
|
|
|
- requestData.setGroupCode(AppContext.getContext().getGroupCode());
|
|
|
- requestData.setProjectId(AppContext.getContext().getProjectId());
|
|
|
- JsonNode buildingId = criteria.get("buildingId");
|
|
|
- if(buildingId != null){
|
|
|
- requestData.setBuildingId(buildingId.textValue());
|
|
|
- }
|
|
|
- JsonNode floorId = criteria.get("floorId");
|
|
|
- if(floorId != null){
|
|
|
- requestData.setFloorId(floorId.textValue());
|
|
|
- }
|
|
|
- JsonNode objType = criteria.get("objType");
|
|
|
- if(objType != null){
|
|
|
- requestData.setObjType(objType.textValue());
|
|
|
- }
|
|
|
- return objectDigitalMapper.queryObjectClassCode(requestData);
|
|
|
+ public List<String> queryObjectClassCode(QueryWrapper<ObjectDigital> queryWrapper) {
|
|
|
+ queryWrapper.select("distinct class_code");
|
|
|
+ List<ObjectDigital> objectDigitals = objectDigitalMapper.selectList(queryWrapper);
|
|
|
+ if(CollUtil.isEmpty(objectDigitals)){
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return objectDigitals.stream().map(item -> item.getClassCode()).collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
|