|
@@ -77,8 +77,9 @@ export class OutputAssessmentResult {
|
|
result,
|
|
result,
|
|
store,
|
|
store,
|
|
time,
|
|
time,
|
|
|
|
+ tags,
|
|
error_msg = "",
|
|
error_msg = "",
|
|
- error_id
|
|
|
|
|
|
+ error_id = ""
|
|
) {
|
|
) {
|
|
this.name = name;
|
|
this.name = name;
|
|
this.status = status;
|
|
this.status = status;
|
|
@@ -87,6 +88,7 @@ export class OutputAssessmentResult {
|
|
this.store = store;
|
|
this.store = store;
|
|
this.time = time;
|
|
this.time = time;
|
|
this.error_msg = error_msg;
|
|
this.error_msg = error_msg;
|
|
|
|
+ this.tags = tags;
|
|
this.error_id = error_id;
|
|
this.error_id = error_id;
|
|
}
|
|
}
|
|
|
|
|