VisualDbInfoVO.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package jnpf.visualdata.model.visualdb;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021年6月15日
  11. */
  12. @Data
  13. public class VisualDbInfoVO {
  14. /** 主键 */
  15. @Schema(description ="主键")
  16. private String id;
  17. /** 名称 */
  18. @Schema(description ="名称")
  19. private String name;
  20. /** 驱动类 */
  21. @Schema(description ="驱动类")
  22. private String driverClass;
  23. /** 连接地址 */
  24. @Schema(description ="连接地址")
  25. private String url;
  26. /** 用户名 */
  27. @Schema(description ="用户名")
  28. private String username;
  29. /** 密码 */
  30. @Schema(description ="密码")
  31. private String password;
  32. /** 备注 */
  33. @Schema(description ="备注")
  34. private String remark;
  35. /** 状态 */
  36. @Schema(description ="状态")
  37. private String status;
  38. /** 是否已删除 */
  39. @Schema(description ="是否已删除")
  40. private String isDeleted;
  41. }