manager/general/src/main/java/org/apache/doris/stack/model/meta/DataBaseResp.java [228:237]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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);
            }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



manager/general/src/main/java/org/apache/doris/stack/model/meta/TableResp.java [221:230]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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);
            }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



