1.调整pms国网监测点台账调整

This commit is contained in:
2024-02-26 20:40:38 +08:00
parent 856042feee
commit 7862b29a18
2 changed files with 9 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import com.njcn.device.biz.pojo.param.DeptGetLineParam;
import com.njcn.user.pojo.po.Dept; import com.njcn.user.pojo.po.Dept;
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
@@ -37,6 +38,8 @@ public interface CommLedgerDeptClient {
HttpResult<Object> update(@RequestBody Dept dept); HttpResult<Object> update(@RequestBody Dept dept);
@GetMapping("/existMonitorDeptTree")
public HttpResult<List<String>> existMonitorDeptTree();
} }

View File

@@ -37,6 +37,12 @@ public class CommLedgerDeptClientFallbackFactory implements FallbackFactory<Comm
throw new BusinessException(finalExceptionEnum); throw new BusinessException(finalExceptionEnum);
} }
@Override
public HttpResult<List<String>> existMonitorDeptTree() {
log.error("{}异常,降级处理,异常为:{}", "获取存在投运监测点的部门id集合", throwable.toString());
throw new BusinessException(finalExceptionEnum);
}
}; };
} }