| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package jnpf.visualdata.model.visualdb;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- *
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司
- * @date 2021年6月15日
- */
- @Data
- public class VisualDbInfoVO {
- /** 主键 */
- @Schema(description ="主键")
- private String id;
- /** 名称 */
- @Schema(description ="名称")
- private String name;
- /** 驱动类 */
- @Schema(description ="驱动类")
- private String driverClass;
- /** 连接地址 */
- @Schema(description ="连接地址")
- private String url;
- /** 用户名 */
- @Schema(description ="用户名")
- private String username;
- /** 密码 */
- @Schema(description ="密码")
- private String password;
- /** 备注 */
- @Schema(description ="备注")
- private String remark;
- /** 状态 */
- @Schema(description ="状态")
- private String status;
- /** 是否已删除 */
- @Schema(description ="是否已删除")
- private String isDeleted;
- }
|