chengf
2025-12-11 f29e6f31e4f2d533124fc68346b7cc072f427c9b
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
package com.java110.dto.report;
 
import com.java110.dto.fee.FeeDetailDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.room.RoomDto;
 
import java.util.ArrayList;
import java.util.List;
 
public class ReportExcelDto {
    private String test;
    private RoomDto roomDto;
    private int col;
    private int row;
    private int total;
 
    public int getTotal() {
        return total;
    }
 
    public void setTotal(int total) {
        this.total = total;
    }
 
    private OwnerDto owner;
    private String[][] feeDetails;
    private String[][] propertyFeeList;
    private String[][] carFeeList;
    private String[][] otherFeeList;
 
    public String[][] getPropertyFeeList() {
        return propertyFeeList;
    }
 
    public void setPropertyFeeList(String[][] propertyFeeList) {
        this.propertyFeeList = propertyFeeList;
    }
 
    public String[][] getCarFeeList() {
        return carFeeList;
    }
 
    public void setCarFeeList(String[][] carFeeList) {
        this.carFeeList = carFeeList;
    }
 
    public String[][] getOtherFeeList() {
        return otherFeeList;
    }
 
    public void setOtherFeeList(String[][] otherFeeList) {
        this.otherFeeList = otherFeeList;
    }
 
    public RoomDto getRoomDto() {
        return roomDto;
    }
 
    public void setRoomDto(RoomDto roomDto) {
        this.roomDto = roomDto;
    }
 
    private List<List<ReportExcelDto>> header;
 
    private Object[] data;
 
    public List<List<ReportExcelDto>> getHeader() {
        return header;
    }
 
    public void setHeader(List<List<ReportExcelDto>> header) {
        this.header = header;
    }
 
    public Object[] getData() {
        return data;
    }
 
    public void setData(Object[] data) {
        this.data = data;
    }
 
    public String getTest() {
        return test;
    }
 
    public void setTest(String test) {
        this.test = test;
    }
 
    public int getCol() {
        return col;
    }
 
    public void setCol(int col) {
        this.col = col;
    }
 
    public int getRow() {
        return row;
    }
 
    public void setRow(int row) {
        this.row = row;
    }
 
    public OwnerDto getOwner() {
        return owner;
    }
 
    public void setOwner(OwnerDto owner) {
        this.owner = owner;
    }
 
    public String[][] getFeeDetails() {
        return feeDetails;
    }
 
    public void setFeeDetails(String[][] feeDetails) {
        this.feeDetails = feeDetails;
    }
}