You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SSHInfo.java 753 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.educoder.bridge.model;
  2. public class SSHInfo {
  3. private String host;
  4. private String port;
  5. private String username;
  6. private String password;
  7. public void setHost(String host) {
  8. this.host = host;
  9. }
  10. public void setPort(String port) {
  11. this.port = port;
  12. }
  13. public void setUsername(String username) {
  14. this.username = username;
  15. }
  16. public void setPassword(String password) {
  17. this.password = password;
  18. }
  19. public String getHost() {
  20. return host;
  21. }
  22. public int getPort() {
  23. return Integer.parseInt(port);
  24. }
  25. public String getUsername() {
  26. return username;
  27. }
  28. public String getPassword() {
  29. return password;
  30. }
  31. }

基于Vue的大屏可视化设计器,前后端一体化解决方案,几十种炫酷图表,支持多种数据来源接入,适用于大屏、低代码、BI场景,使用简单,代码完全开源。