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
package com.gx.obe.struct.beans;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
public class StructDateInfo {
private final List<TemplateDataItem> templateDataItemList = new CopyOnWriteArrayList<>();
private final List<TemplateTable> templateTableList = new CopyOnWriteArrayList<>();
private final List<ModelData> modelDataList = new CopyOnWriteArrayList<>();
private final List<BusinessLicense> businessLicenseList = new CopyOnWriteArrayList<>();
private final List<Finance> financeList = new CopyOnWriteArrayList<>();
private final List<Performance> performanceList = new CopyOnWriteArrayList<>();
private final List<BidderBasicInfo> bidderBasicInfoList = new CopyOnWriteArrayList<>();
private final List<Qualification> qualificationList = new CopyOnWriteArrayList<>();
private final List<ProjectLeader> projectLeaderList = new CopyOnWriteArrayList<>();
private final List<AttachmentFile> attachmentFileList = new CopyOnWriteArrayList<>();
public List<TemplateTable> getTemplateTableList() {
return templateTableList;
}
public List<ModelData> getModelDataList() {
return modelDataList;
}
public List<BusinessLicense> getBusinessLicenseList() {
return businessLicenseList;
}
public List<Finance> getFinanceList() {
return financeList;
}
public List<Performance> getPerformanceList() {
return performanceList;
}
public List<BidderBasicInfo> getBidderBasicInfoList() {
return bidderBasicInfoList;
}
public List<Qualification> getQualificationList() {
return qualificationList;
}
public List<ProjectLeader> getProjectLeaderList() {
return projectLeaderList;
}
public List<TemplateDataItem> getTemplateDataItemList() {
return templateDataItemList;
}
public List<AttachmentFile> getAttachmentFileList() {
return attachmentFileList;
}
}