|
|
@@ -47,6 +47,18 @@ public class VisitorMainModel extends SuperModel {
|
|
|
return "";
|
|
|
}
|
|
|
|
|
|
+ @Schema(description = "最终状态")
|
|
|
+ private VisitorState finalState;
|
|
|
+
|
|
|
+ private String finalStateStr;
|
|
|
+
|
|
|
+ public String getFinalStateStr() {
|
|
|
+ if (finalState != null) {
|
|
|
+ return finalState.getRemark();
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
@Schema(description = "是否显示警告红点")
|
|
|
private Boolean isWarning = Boolean.FALSE;
|
|
|
|