|
|
@@ -5,6 +5,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import com.ydtech.modules.order.entity.TaxArrears;
|
|
|
import com.ydtech.modules.order.entity.crawler.response.CrawlerQuoteResponse;
|
|
|
import com.ydtech.modules.order.entity.vo.CoreModelsVo;
|
|
|
+import com.ydtech.utils.StringUtils;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
@@ -170,11 +171,11 @@ public class QuoteRespVo {
|
|
|
|
|
|
|
|
|
public void setJqClaims(String jqClaims) {
|
|
|
- this.jqClaims = jqClaims.isEmpty() ? null : jqClaims;
|
|
|
+ this.jqClaims = StringUtils.isEmpty(jqClaims) ? null : jqClaims;
|
|
|
}
|
|
|
|
|
|
public void setSyClaims(String syClaims) {
|
|
|
- this.syClaims = syClaims.isEmpty() ? null : syClaims;
|
|
|
+ this.syClaims = StringUtils.isEmpty(jqClaims) ? null : syClaims;
|
|
|
}
|
|
|
|
|
|
public List<AccidentResponseVo> getAccidentInfo() {
|