ResultBean.java 11 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
/**
 * ResultBean.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package com.ectrip.cyt.bean;

import com.alibaba.fastjson.JSON;

public class ResultBean implements java.io.Serializable {

    private int columnCount;

    private String[] columnName;

    private String[] columnNames;

    private int currentPage;

    private int eachPageNumber;

    private int endNum;

    private String[][] row;

    private int rowsCount;

    private java.util.Vector selectResult;

    private int startNum;

    private int totalNumber;

    private int totalPages;

    public ResultBean() {
    }

    public ResultBean(
            int columnCount,
            String[] columnName,
            String[] columnNames,
            int currentPage,
            int eachPageNumber,
            int endNum,
            String[][] row,
            int rowsCount,
            java.util.Vector selectResult,
            int startNum,
            int totalNumber,
            int totalPages) {
        this.columnCount = columnCount;
        this.columnName = columnName;
        this.columnNames = columnNames;
        this.currentPage = currentPage;
        this.eachPageNumber = eachPageNumber;
        this.endNum = endNum;
        this.row = row;
        this.rowsCount = rowsCount;
        this.selectResult = selectResult;
        this.startNum = startNum;
        this.totalNumber = totalNumber;
        this.totalPages = totalPages;
    }


    /**
     * Gets the columnCount value for this ResultBean.
     *
     * @return columnCount
     */
    public int getColumnCount() {
        return columnCount;
    }


    /**
     * Sets the columnCount value for this ResultBean.
     *
     * @param columnCount
     */
    public void setColumnCount(int columnCount) {
        this.columnCount = columnCount;
    }


    /**
     * Gets the columnName value for this ResultBean.
     *
     * @return columnName
     */
    public String[] getColumnName() {
        return columnName;
    }


    /**
     * Sets the columnName value for this ResultBean.
     *
     * @param columnName
     */
    public void setColumnName(String[] columnName) {
        this.columnName = columnName;
    }

    public String getColumnName(int i) {
        return this.columnName[i];
    }

    public void setColumnName(int i, String _value) {
        this.columnName[i] = _value;
    }


    /**
     * Gets the columnNames value for this ResultBean.
     *
     * @return columnNames
     */
    public String[] getColumnNames() {
        return columnNames;
    }


    /**
     * Sets the columnNames value for this ResultBean.
     *
     * @param columnNames
     */
    public void setColumnNames(String[] columnNames) {
        this.columnNames = columnNames;
    }


    /**
     * Gets the currentPage value for this ResultBean.
     *
     * @return currentPage
     */
    public int getCurrentPage() {
        return currentPage;
    }


    /**
     * Sets the currentPage value for this ResultBean.
     *
     * @param currentPage
     */
    public void setCurrentPage(int currentPage) {
        this.currentPage = currentPage;
    }


    /**
     * Gets the eachPageNumber value for this ResultBean.
     *
     * @return eachPageNumber
     */
    public int getEachPageNumber() {
        return eachPageNumber;
    }


    /**
     * Sets the eachPageNumber value for this ResultBean.
     *
     * @param eachPageNumber
     */
    public void setEachPageNumber(int eachPageNumber) {
        this.eachPageNumber = eachPageNumber;
    }


    /**
     * Gets the endNum value for this ResultBean.
     *
     * @return endNum
     */
    public int getEndNum() {
        return endNum;
    }


    /**
     * Sets the endNum value for this ResultBean.
     *
     * @param endNum
     */
    public void setEndNum(int endNum) {
        this.endNum = endNum;
    }


    /**
     * Gets the row value for this ResultBean.
     *
     * @return row
     */
    public String[][] getRow() {
        return row;
    }


    /**
     * Sets the row value for this ResultBean.
     *
     * @param row
     */
    public void setRow(String[][] row) {
        this.row = row;
    }

    public String[] getRow(int i) {
        return this.row[i];
    }

    public void setRow(int i, String[] _value) {
        this.row[i] = _value;
    }


    /**
     * Gets the rowsCount value for this ResultBean.
     *
     * @return rowsCount
     */
    public int getRowsCount() {
        return rowsCount;
    }


    /**
     * Sets the rowsCount value for this ResultBean.
     *
     * @param rowsCount
     */
    public void setRowsCount(int rowsCount) {
        this.rowsCount = rowsCount;
    }


    /**
     * Gets the selectResult value for this ResultBean.
     *
     * @return selectResult
     */
    public java.util.Vector getSelectResult() {
        return selectResult;
    }


    /**
     * Sets the selectResult value for this ResultBean.
     *
     * @param selectResult
     */
    public void setSelectResult(java.util.Vector selectResult) {
        this.selectResult = selectResult;
    }


    /**
     * Gets the startNum value for this ResultBean.
     *
     * @return startNum
     */
    public int getStartNum() {
        return startNum;
    }


    /**
     * Sets the startNum value for this ResultBean.
     *
     * @param startNum
     */
    public void setStartNum(int startNum) {
        this.startNum = startNum;
    }


    /**
     * Gets the totalNumber value for this ResultBean.
     *
     * @return totalNumber
     */
    public int getTotalNumber() {
        return totalNumber;
    }


    /**
     * Sets the totalNumber value for this ResultBean.
     *
     * @param totalNumber
     */
    public void setTotalNumber(int totalNumber) {
        this.totalNumber = totalNumber;
    }


    /**
     * Gets the totalPages value for this ResultBean.
     *
     * @return totalPages
     */
    public int getTotalPages() {
        return totalPages;
    }


    /**
     * Sets the totalPages value for this ResultBean.
     *
     * @param totalPages
     */
    public void setTotalPages(int totalPages) {
        this.totalPages = totalPages;
    }

    private Object __equalsCalc = null;

    public synchronized boolean equals(Object obj) {
        if (!(obj instanceof ResultBean)) return false;
        ResultBean other = (ResultBean) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true &&
                this.columnCount == other.getColumnCount() &&
                ((this.columnName == null && other.getColumnName() == null) ||
                        (this.columnName != null &&
                                java.util.Arrays.equals(this.columnName, other.getColumnName()))) &&
                ((this.columnNames == null && other.getColumnNames() == null) ||
                        (this.columnNames != null &&
                                java.util.Arrays.equals(this.columnNames, other.getColumnNames()))) &&
                this.currentPage == other.getCurrentPage() &&
                this.eachPageNumber == other.getEachPageNumber() &&
                this.endNum == other.getEndNum() &&
                ((this.row == null && other.getRow() == null) ||
                        (this.row != null &&
                                java.util.Arrays.equals(this.row, other.getRow()))) &&
                this.rowsCount == other.getRowsCount() &&
                ((this.selectResult == null && other.getSelectResult() == null) ||
                        (this.selectResult != null &&
                                this.selectResult.equals(other.getSelectResult()))) &&
                this.startNum == other.getStartNum() &&
                this.totalNumber == other.getTotalNumber() &&
                this.totalPages == other.getTotalPages();
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;

    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        _hashCode += getColumnCount();
        if (getColumnName() != null) {
            for (int i = 0;
                 i < java.lang.reflect.Array.getLength(getColumnName());
                 i++) {
                Object obj = java.lang.reflect.Array.get(getColumnName(), i);
                if (obj != null &&
                        !obj.getClass().isArray()) {
                    _hashCode += obj.hashCode();
                }
            }
        }
        if (getColumnNames() != null) {
            for (int i = 0;
                 i < java.lang.reflect.Array.getLength(getColumnNames());
                 i++) {
                Object obj = java.lang.reflect.Array.get(getColumnNames(), i);
                if (obj != null &&
                        !obj.getClass().isArray()) {
                    _hashCode += obj.hashCode();
                }
            }
        }
        _hashCode += getCurrentPage();
        _hashCode += getEachPageNumber();
        _hashCode += getEndNum();
        if (getRow() != null) {
            for (int i = 0;
                 i < java.lang.reflect.Array.getLength(getRow());
                 i++) {
                Object obj = java.lang.reflect.Array.get(getRow(), i);
                if (obj != null &&
                        !obj.getClass().isArray()) {
                    _hashCode += obj.hashCode();
                }
            }
        }
        _hashCode += getRowsCount();
        if (getSelectResult() != null) {
            _hashCode += getSelectResult().hashCode();
        }
        _hashCode += getStartNum();
        _hashCode += getTotalNumber();
        _hashCode += getTotalPages();
        __hashCodeCalc = false;
        return _hashCode;
    }

    /**
     * 取到具体显示的字段值 Creation date: (2000-8-12 11:45:24)
     *
     * @param rownum int 行数
     * @param colnum int 列数
     * @return java.lang.String
     * @throws Exception The exception description.
     */
    public String getResult(int rownum, int colnum) {

        if (selectResult.isEmpty()) {
            return "";

        } else {
//            String[] tempRow = new Gson().fromJson((String) selectResult.elementAt(rownum),String[].class);
            String[] tempRow = JSON.parseObject(selectResult.elementAt(rownum).toString(),String[].class);
            return tempRow[colnum];

        }

    }

    /**
     * 重载getResult()方法 通过行数、字段名取到值
     */
    public String getResult(int rownum, String columName) {
        int colnum = -1;
        String result = "";
        for (int j = 0; j < columnCount; j++) {

            if (columnNames[j].equalsIgnoreCase(columName)) {
                colnum = j;
                break;
            }
        }

        if (colnum != -1) {
            // 有此字段
            result = getResult(rownum, colnum);

        }

        return result;

    }

}