Selaa lähdekoodia

车船税内容

Qchen 1 vuosi sitten
vanhempi
commit
581e7020ee

+ 4 - 0
tenant/insurance/quotation-commons/src/main/java/com/jzg/quotation/commons/entity/vo/aggregated/QuoteVo.java

@@ -61,5 +61,9 @@ public class QuoteVo implements Serializable {
      * 非车险
      */
     private List<AccidentalDrivingVo> accidentalDrivings;
+    /**
+     * 车船税信息
+     */
+    private VehicleAndVesselTaxVo vehicleAndVesselTax;
 
 }

+ 65 - 0
tenant/insurance/quotation-commons/src/main/java/com/jzg/quotation/commons/entity/vo/quote/VehicleAndVesselTaxVo.java

@@ -0,0 +1,65 @@
+package com.jzg.quotation.commons.entity.vo.quote;
+
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+
+import java.io.Serializable;
+
+@Data
+@AllArgsConstructor
+public class VehicleAndVesselTaxVo implements Serializable {
+    /**
+     * 减免税凭证号 减免税时必传
+     */
+    private String extendChar2;
+    /**
+     * 减免比例  减税时必传
+     */
+    private String taxRelief;
+    /**
+     * 减免税原因代码  减免税时必传
+     */
+    private String relifReason;
+    /**
+     * 开具税务机关代码 减免完税时必传
+     */
+    private String taxComCode;
+    /**
+     * 开具凭证的税务机关名称 减免完税时必传
+     */
+    private String taxComName;
+    /**
+     * 完税凭证填发日期 完税时必传
+     */
+    private String taxDocumentDate;
+    /**
+     * 开具完税凭证地区代码 完税时必传
+     */
+    private String taxPaidAreaCode;
+    /**
+     * 完完税凭证号 完税时必传
+     */
+    private String paidFreeCertificate;
+    /**
+     * 纳税人名称 正常缴税时必传
+     */
+    private String taxpayerName;
+    /**
+     * 纳税人证件类型 正常缴税时必传
+     */
+    private String taxpayerIdentifier;
+    /**
+     * 纳税人证件号码 正常缴税时必传
+     */
+    private String identifyNumber;
+    /**
+     * 车船税标志 1-正常交税; 2-免税; 3-减税; 4-完税
+     */
+    private String taxRelifFlag;
+    /**
+     * 组织机构代码
+     */
+    private String organizationCode;
+
+}