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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package com.ruoyi.domain.vo;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 检验报告PDF VO类
* @author gxk
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class InspectionReportPdfVO {
/**
* 报告编号
*/
private String reportNumber;
/**
* 产品名称
*/
private String productName;
/**
* 产品型号
*/
private String productModel;
/**
* 委托单位
*/
private String entrustedUnit;
/**
* 检验中心名称
*/
private String inspectionCenterName;
/**
* 检验中心地址
*/
private String inspectionCenterAddress;
/**
* 检验中心电话
*/
private String inspectionCenterTelephone;
/**
* 检验中心邮编
*/
private String inspectionCenterPostcode;
/**
* 委托单位地址
*/
private String clientAddress;
/**
* 委托单位电话
*/
private String entrustedUnitTelephone;
/**
* 委托单位邮编
*/
private String clientPostalCode;
/**
* 样品名称
*/
private String sampleName;
/**
* 型号规格
*/
private String typeSpecification;
/**
* 生产企业
*/
private String productionEnterprise;
/**
* 送样者
*/
private String sampleSender;
/**
* 送样日期
*/
private String sampleDeliveryDate;
/**
* 样品数量
*/
private String sampleQuantity;
/**
* 生产日期
*/
private String productionDate;
/**
* 检验依据
*/
private String inspectionBasis;
/**
* 检验项目
*/
private String inspectionItem;
/**
* 检验结论
*/
private String testConclusion;
/**
* 签发日期
*/
private String issueDate;
/**
* 备注
*/
private String remark;
/**
* 任务编号
*/
private String taskNumber;
/**
* 样品数量
*/
private String sampleSum;
/**
* 车辆类型
*/
private String vehicleType;
/**
* 车辆型号
*/
private String vehicleModel;
/**
* 车辆识别码
*/
private String vehicleIdentificationNumber;
/**
* 样品编号汇总
*/
private String sampleNumberSummary;
/**
* 品牌图片
*/
private String brandImage;
/**
* 样品照片
*/
private String samplePhotos;
/**
* 任务开始时间
*/
private String taskBeginTime;
/**
* 任务结束时间
*/
private String taskEndTime;
/**
* 检验时间和地点
*/
private String inspectionTimeAndLocation;
}