zhou zhou
8 小时以前 6e5ff559023efd2d24fdca2adcb7268d06420e46
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
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;
    }
}