lihang
2023-04-25 3fade6d3b27f5666672bb3af610020367f790bda
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
package com.vci.ubcs.starter.poi.bo;
 
import java.util.HashMap;
import java.util.Map;
 
public class SheetRowData {
    private String rowIndex;
    private Map<Integer, String> data = new HashMap();
 
    public SheetRowData() {
    }
 
    public String getRowIndex() {
        return this.rowIndex;
    }
 
    public void setRowIndex(String rowIndex) {
        this.rowIndex = rowIndex;
    }
 
    public Map<Integer, String> getData() {
        return this.data;
    }
 
    public void setData(Map<Integer, String> data) {
        this.data = data;
    }
 
    public String toString() {
        return "SheetRowData{rowIndex='" + this.rowIndex + '\'' + ", data=" + this.data + '}';
    }
}