package com.vincent.rsf.server.common.domain.report;
|
|
public class ReportMeta {
|
private String title;
|
private String companyName;
|
private String printedBy;
|
private String reportDate;
|
private String reportDateValue;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getCompanyName() {
|
return companyName;
|
}
|
|
public void setCompanyName(String companyName) {
|
this.companyName = companyName;
|
}
|
|
public String getPrintedBy() {
|
return printedBy;
|
}
|
|
public void setPrintedBy(String printedBy) {
|
this.printedBy = printedBy;
|
}
|
|
public String getReportDate() {
|
return reportDate;
|
}
|
|
public void setReportDate(String reportDate) {
|
this.reportDate = reportDate;
|
}
|
|
public String getReportDateValue() {
|
return reportDateValue;
|
}
|
|
public void setReportDateValue(String reportDateValue) {
|
this.reportDateValue = reportDateValue;
|
}
|
}
|