|
@@ -0,0 +1,77 @@
|
|
|
|
|
+package com.ydtech.modules.order.entity.api.zj.response;
|
|
|
|
|
+
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+
|
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
+@NoArgsConstructor
|
|
|
|
|
+@Data
|
|
|
|
|
+public class QueryOrderStateResponse extends BaseResponse implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = -8559085906831615330L;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("orderId")
|
|
|
|
|
+ private String orderId;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("orderNo")
|
|
|
|
|
+ private String orderNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("orderAmount")
|
|
|
|
|
+ private Double orderAmount;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("uwFlag")
|
|
|
|
|
+ private String uwFlag;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("vciProposalNo")
|
|
|
|
|
+ private String vciProposalNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tciProposalNo")
|
|
|
|
|
+ private String tciProposalNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("vciPolicyNo")
|
|
|
|
|
+ private String vciPolicyNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tciPolicyNo")
|
|
|
|
|
+ private String tciPolicyNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("vciEffectiveDate")
|
|
|
|
|
+ private String vciEffectiveDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("vciExpiryDate")
|
|
|
|
|
+ private String vciExpiryDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tciEffectiveDate")
|
|
|
|
|
+ private String tciEffectiveDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tciExpiryDate")
|
|
|
|
|
+ private String tciExpiryDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("uwMsg")
|
|
|
|
|
+ private String uwMsg;
|
|
|
|
|
+ @JsonProperty("vciPolicyIssueDate")
|
|
|
|
|
+ private String vciPolicyIssueDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tciPolicyIssueDate")
|
|
|
|
|
+ private String tciPolicyIssueDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("nonVehicleProposalNo")
|
|
|
|
|
+ private String nonVehicleProposalNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("nonVehiclePolicyNo")
|
|
|
|
|
+ private String nonVehiclePolicyNo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("nonVehicleEffectiveDate")
|
|
|
|
|
+ private String nonVehicleEffectiveDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("nonVehicleExpiryDate")
|
|
|
|
|
+ private String nonVehicleExpiryDate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("nonVehiclePolicyIssueDate")
|
|
|
|
|
+ private String nonVehiclePolicyIssueDate;
|
|
|
|
|
+}
|