AdmModelRelController.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.persagy.proxy.adm.controller;
  2. import com.persagy.dmp.common.exception.BusinessException;
  3. import com.persagy.proxy.adm.model.AdmModelRel;
  4. import com.persagy.proxy.adm.request.AdmResponse;
  5. import com.persagy.proxy.adm.service.IAdmModelRelService;
  6. import com.persagy.proxy.adm.utils.AdmContextUtil;
  7. import lombok.extern.slf4j.Slf4j;
  8. import org.apache.commons.lang.StringUtils;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.beans.factory.annotation.Value;
  11. import org.springframework.web.bind.annotation.PostMapping;
  12. import org.springframework.web.bind.annotation.RequestBody;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import java.util.List;
  16. /**
  17. * @ClassName AdmModelRelController
  18. * @Description: 模型修改设备元空间的建筑楼层信息
  19. * @Author linhuili
  20. * @Date 2021/8/31 14:30
  21. * @Version V1.0
  22. **/
  23. @RestController
  24. @RequestMapping("/rel/update")
  25. @Slf4j
  26. public class AdmModelRelController {
  27. @Value("${middleware.group.code}")
  28. private String groupCode;
  29. @Autowired
  30. private IAdmModelRelService service;
  31. /**
  32. * 模型修改设备元空间的建筑楼层信息
  33. * @param admModelRel
  34. * @return
  35. * @throws Exception
  36. */
  37. @PostMapping("/equip-ispace")
  38. public AdmResponse update(@RequestBody AdmModelRel admModelRel) throws Exception {
  39. if(StringUtils.isEmpty(admModelRel.getModelId())){
  40. throw new BusinessException("模型ID不能为空");
  41. }
  42. if(StringUtils.isEmpty(admModelRel.getFloorId())){
  43. throw new BusinessException("楼层ID不能为空");
  44. }
  45. List<AdmModelRel> vos = service.doUpdateModelInfo(AdmContextUtil.toDmpContext(), AdmModelRel.class,admModelRel);
  46. return AdmResponse.success(vos);
  47. }
  48. }