manager/general/src/main/java/org/apache/doris/stack/model/meta/DataBaseResp.java [203:245]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Data
    @NoArgsConstructor
    @AllArgsConstructor
    public class Detail {

        private static final String DB_NAME = "dbname";

        private static final String HOST = "host";

        private static final String PASSWORD = "password";

        private static final String PORT = "port";

        private static final String USER = "user";

        private String dbName;

        private String host;

        private String password;

        private int port;

        private String user;

        public Detail(String detail) {
            if (!StringUtils.isEmpty(detail)) {
                JSONObject jsonObject = JSONObject.parseObject(detail);
                this.dbName = jsonObject.getString(DB_NAME);
                this.host = jsonObject.getString(HOST);
                this.password = jsonObject.getString(PASSWORD);
                this.port = jsonObject.getInteger(PORT);
                this.user = jsonObject.getString(USER);
            }
        }
    }

    /**
     * Table
     */
    @Data
    @NoArgsConstructor
    @AllArgsConstructor
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



manager/general/src/main/java/org/apache/doris/stack/model/meta/TableResp.java [196:238]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Data
    @NoArgsConstructor
    @AllArgsConstructor
    public class Detail {

        private static final String DB_NAME = "dbname";

        private static final String HOST = "host";

        private static final String PASSWORD = "password";

        private static final String PORT = "port";

        private static final String USER = "user";

        private String dbName;

        private String host;

        private String password;

        private int port;

        private String user;

        public Detail(String detail) {
            if (!StringUtils.isEmpty(detail)) {
                JSONObject jsonObject = JSONObject.parseObject(detail);
                this.dbName = jsonObject.getString(DB_NAME);
                this.host = jsonObject.getString(HOST);
                this.password = jsonObject.getString(PASSWORD);
                this.port = jsonObject.getInteger(PORT);
                this.user = jsonObject.getString(USER);
            }
        }
    }

    /**
     * Database
     */
    @Data
    @NoArgsConstructor
    @AllArgsConstructor
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



