|
|
@@ -2,7 +2,7 @@ package com.ydtech.modules.ins.model.yc.audit.response;
|
|
|
|
|
|
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
|
|
|
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
|
|
|
-import com.ydtech.modules.ins.model.yc.ruote.response.*;
|
|
|
+import com.ydtech.utils.StringUtils;
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
@@ -30,7 +30,6 @@ public class AuditResponse {
|
|
|
/**
|
|
|
* 交强险核保标志
|
|
|
* 0:待核保;1:已核保;3:退回修改;9:已核保未缴费;
|
|
|
- *
|
|
|
*/
|
|
|
@JacksonXmlProperty(localName = "statusJQ")
|
|
|
private String statusJq;
|
|
|
@@ -73,10 +72,20 @@ public class AuditResponse {
|
|
|
private String orderCode;
|
|
|
|
|
|
|
|
|
+ public String getStatusJq() {
|
|
|
+ return StringUtils.isEmpty(statusJq) ? "" : statusJq;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatusSY() {
|
|
|
+ return StringUtils.isEmpty(statusSY) ? "" : statusSY;
|
|
|
+ }
|
|
|
+
|
|
|
@Data
|
|
|
public static class ResponseHead {
|
|
|
+
|
|
|
@JacksonXmlProperty(localName = "returnCode")
|
|
|
private String returnCode;
|
|
|
+
|
|
|
@JacksonXmlProperty(localName = "returnMessage")
|
|
|
private String returnMessage;
|
|
|
|