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;
|
}
|
}
|