Browse Source

监管页面导出

LiFei 5 years ago
parent
commit
b899cae892

+ 47 - 0
happy-cloud-wisdom/happy-cloud-wisdom-biz/src/main/java/org/jeecg/modules/hlwpayment/controller/HlwPaymentController.java

@@ -7,10 +7,12 @@ import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import io.swagger.annotations.ApiOperation;
 import lombok.extern.slf4j.Slf4j;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang.StringUtils;
 import org.apache.commons.lang.StringUtils;
+import org.apache.shiro.SecurityUtils;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.aspect.annotation.AutoLog;
 import org.jeecg.common.aspect.annotation.AutoLog;
 import org.jeecg.common.system.base.controller.JeecgController;
 import org.jeecg.common.system.base.controller.JeecgController;
 import org.jeecg.common.system.query.QueryGenerator;
 import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.common.system.vo.LoginUser;
 import org.jeecg.common.util.businessAccountUtils;
 import org.jeecg.common.util.businessAccountUtils;
 import org.jeecg.modules.hlwaccount.service.IHlwCompanyService;
 import org.jeecg.modules.hlwaccount.service.IHlwCompanyService;
 import org.jeecg.modules.hlwcpmanager.entity.HlwCpSubcontractor;
 import org.jeecg.modules.hlwcpmanager.entity.HlwCpSubcontractor;
@@ -19,6 +21,9 @@ import org.jeecg.modules.hlwcpmanager.service.IHlwCpSubcontractorService;
 import org.jeecg.modules.hlwpayment.entity.HlwPayment;
 import org.jeecg.modules.hlwpayment.entity.HlwPayment;
 import org.jeecg.modules.hlwpayment.entity.HlwPaymentDetail;
 import org.jeecg.modules.hlwpayment.entity.HlwPaymentDetail;
 import org.jeecg.modules.hlwpayment.service.IHlwPaymentService;
 import org.jeecg.modules.hlwpayment.service.IHlwPaymentService;
+import org.jeecgframework.poi.excel.def.NormalExcelConstants;
+import org.jeecgframework.poi.excel.entity.ExportParams;
+import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.bind.annotation.*;
@@ -27,6 +32,7 @@ import org.springframework.web.servlet.ModelAndView;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponse;
 import java.math.BigDecimal;
 import java.math.BigDecimal;
+import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Arrays;
 import java.util.List;
 import java.util.List;
 
 
@@ -435,6 +441,47 @@ public class HlwPaymentController extends JeecgController<HlwPayment, IHlwPaymen
         return super.exportXls(request, hlwPayment, HlwPayment.class, "付款信息表");
         return super.exportXls(request, hlwPayment, HlwPayment.class, "付款信息表");
     }
     }
 
 
+
+
+
+    /**
+     * 导出excel
+     *
+     * @param request
+     * @param
+     */
+    @RequestMapping(value = "/exportBusinessCompany")
+    public ModelAndView exportBusinessCompany(HttpServletRequest request, HlwPayment hlwPayment) {
+        // Step.1 组装查询条件查询数据
+        QueryWrapper<HlwPayment> queryWrapper = QueryGenerator.initQueryWrapperForRule(hlwPayment, request.getParameterMap());
+        List<HlwPayment> hwPaymentList = new ArrayList<>();
+        hwPaymentList = hlwPaymentService.findCompanyBusinessList(hlwPayment, queryWrapper);
+        Double sumNetPayment = 0.00;
+        Double sumTaxPayment = 0.00;
+        Double personalTaxPayment = 0.00;
+        int paymentNumber = 0;
+        if (hwPaymentList.size() > 0) {
+            for (int i = 0; i < hwPaymentList.size(); i++) {
+                personalTaxPayment = businessAccountUtils.add(personalTaxPayment, businessAccountUtils.round(businessAccountUtils.mul(businessAccountUtils.div(hwPaymentList.get(i).getPersonalNetPayment(), 1.06), 0.06), 2));
+                hwPaymentList.get(i).setPersonalTaxPayment(personalTaxPayment);
+            }
+        }
+
+        // Step.2 AutoPoi 导出Excel
+        ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
+        mv.addObject(NormalExcelConstants.DATA_LIST, hwPaymentList);
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        //导出文件名称
+        mv.addObject(NormalExcelConstants.FILE_NAME, "合作商户");
+        mv.addObject(NormalExcelConstants.CLASS, HlwPayment.class);
+        mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("合作商户", "导出人" + sysUser.getUsername(), "导出信息"));
+        return mv;
+    }
+
+
+
+
+
     /**
     /**
      * 通过excel导入数据
      * 通过excel导入数据
      *
      *

+ 31 - 0
happy-cloud-wisdom/happy-cloud-wisdom-biz/src/main/java/org/jeecg/modules/hlwpayment/controller/HlwPaymentDetailController.java

@@ -1,5 +1,6 @@
 package org.jeecg.modules.hlwpayment.controller;
 package org.jeecg.modules.hlwpayment.controller;
 
 
+import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Arrays;
 import java.util.List;
 import java.util.List;
 import java.util.Map;
 import java.util.Map;
@@ -10,8 +11,10 @@ import java.net.URLDecoder;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponse;
 
 
+import org.apache.shiro.SecurityUtils;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.system.query.QueryGenerator;
 import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.common.system.vo.LoginUser;
 import org.jeecg.common.util.businessAccountUtils;
 import org.jeecg.common.util.businessAccountUtils;
 import org.jeecg.common.util.oConvertUtils;
 import org.jeecg.common.util.oConvertUtils;
 import org.jeecg.modules.hlwpayment.entity.HlwPaymentDetail;
 import org.jeecg.modules.hlwpayment.entity.HlwPaymentDetail;
@@ -231,6 +234,34 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
         return super.exportXls(request, hlwPaymentDetail, HlwPaymentDetail.class, "付款明细表");
         return super.exportXls(request, hlwPaymentDetail, HlwPaymentDetail.class, "付款明细表");
     }
     }
 
 
+
+
+    /**
+     * 导出excel
+     *
+     * @param request
+     * @param
+     */
+    @RequestMapping(value = "/exportBusinessUserInfo")
+    public ModelAndView exportCzXls(HttpServletRequest request, HlwPaymentDetail hwPaymentDetail) {
+        // Step.1 组装查询条件查询数据
+        QueryWrapper<HlwPaymentDetail> queryWrapper = QueryGenerator.initQueryWrapperForRule(hwPaymentDetail, request.getParameterMap());
+        List<HlwPaymentDetail> hwPaymentDetailList = new ArrayList<>();
+        hwPaymentDetailList = hlwPaymentDetailService.findUserBusinessInfoListForMoney(hwPaymentDetail, queryWrapper);
+        // Step.2 AutoPoi 导出Excel
+        ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
+        mv.addObject(NormalExcelConstants.DATA_LIST, hwPaymentDetailList);
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        //导出文件名称
+        mv.addObject(NormalExcelConstants.FILE_NAME, "自由职业者");
+        mv.addObject(NormalExcelConstants.CLASS, HlwPaymentDetail.class);
+        mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("自由职业者", "导出人" + sysUser.getUsername(), "导出信息"));
+        return mv;
+    }
+
+
+
+
     /**
     /**
      * 通过excel导入数据
      * 通过excel导入数据
      *
      *

+ 22 - 24
happy-cloud-wisdom/happy-cloud-wisdom-biz/src/main/java/org/jeecg/modules/hlwpayment/entity/HlwPayment.java

@@ -40,57 +40,48 @@ public class HlwPayment implements Serializable {
     /**
     /**
      * 应用id
      * 应用id
      */
      */
-    @Excel(name = "应用id", width = 15)
     @ApiModelProperty(value = "应用id")
     @ApiModelProperty(value = "应用id")
     private java.lang.Integer applicationId;
     private java.lang.Integer applicationId;
     /**
     /**
      * 企业id
      * 企业id
      */
      */
-    @Excel(name = "企业id", width = 15)
     @ApiModelProperty(value = "企业id")
     @ApiModelProperty(value = "企业id")
     private java.lang.Integer companyId;
     private java.lang.Integer companyId;
 
 
     /**
     /**
      * 服务商id
      * 服务商id
      */
      */
-    @Excel(name = "服务商id", width = 15)
     @ApiModelProperty(value = "服务商id")
     @ApiModelProperty(value = "服务商id")
     private java.lang.Integer subcontractorId;
     private java.lang.Integer subcontractorId;
     /**
     /**
      * 付款单号
      * 付款单号
      */
      */
-    @Excel(name = "付款单号", width = 15)
     @ApiModelProperty(value = "付款单号")
     @ApiModelProperty(value = "付款单号")
     private java.lang.String paymentCode;
     private java.lang.String paymentCode;
     /**
     /**
      * 项目金额
      * 项目金额
      */
      */
-    @Excel(name = "项目金额", width = 15)
     @ApiModelProperty(value = "项目金额")
     @ApiModelProperty(value = "项目金额")
     private Double payment;
     private Double payment;
     /**
     /**
      * 服务费率(仅记录,不参与后续业务)
      * 服务费率(仅记录,不参与后续业务)
      */
      */
-    @Excel(name = "服务费率(仅记录,不参与后续业务)", width = 15)
     @ApiModelProperty(value = "服务费率(仅记录,不参与后续业务)")
     @ApiModelProperty(value = "服务费率(仅记录,不参与后续业务)")
     private Double serviceRate;
     private Double serviceRate;
     /**
     /**
      * 服务费(仅作展示用,不参与业务,记录企业支付的服务费)
      * 服务费(仅作展示用,不参与业务,记录企业支付的服务费)
      */
      */
-    @Excel(name = "服务费(仅作展示用,不参与业务,记录企业支付的服务费)", width = 15)
     @ApiModelProperty(value = "服务费(仅作展示用,不参与业务,记录企业支付的服务费)")
     @ApiModelProperty(value = "服务费(仅作展示用,不参与业务,记录企业支付的服务费)")
     private Double serviceFee;
     private Double serviceFee;
     /**
     /**
      * 付款合计(payment+service_fee=total_payment)
      * 付款合计(payment+service_fee=total_payment)
      */
      */
-    @Excel(name = "付款合计(payment+service_fee=total_payment)", width = 15)
     @ApiModelProperty(value = "付款合计(payment+service_fee=total_payment)")
     @ApiModelProperty(value = "付款合计(payment+service_fee=total_payment)")
     private Double totalPayment;
     private Double totalPayment;
 
 
     /**
     /**
      * 支付时间(提交银行接口时间)
      * 支付时间(提交银行接口时间)
      */
      */
-    @Excel(name = "支付时间(提交银行接口时间)", width = 15, format = "yyyy-MM-dd HH:mm:ss")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @ApiModelProperty(value = "支付时间(提交银行接口时间)")
     @ApiModelProperty(value = "支付时间(提交银行接口时间)")
@@ -98,7 +89,6 @@ public class HlwPayment implements Serializable {
     /**
     /**
      * 是否通过平台(0:否 1:是)
      * 是否通过平台(0:否 1:是)
      */
      */
-    @Excel(name = "是否通过平台(0:否 1:是)", width = 15)
     @ApiModelProperty(value = "是否通过平台(0:否 1:是)")
     @ApiModelProperty(value = "是否通过平台(0:否 1:是)")
     @Dict(dicCode = "is_through_platform")
     @Dict(dicCode = "is_through_platform")
     private Integer isThroughPlatform;
     private Integer isThroughPlatform;
@@ -106,7 +96,6 @@ public class HlwPayment implements Serializable {
     /**
     /**
      * 发票id
      * 发票id
      */
      */
-    @Excel(name = "发票id", width = 15)
     @ApiModelProperty(value = "发票id")
     @ApiModelProperty(value = "发票id")
     private java.lang.Integer invoiceId;
     private java.lang.Integer invoiceId;
     /**
     /**
@@ -117,7 +106,6 @@ public class HlwPayment implements Serializable {
     /**
     /**
      * 状态(0:打回 1:待支付 2:支付中 3:已支付)
      * 状态(0:打回 1:待支付 2:支付中 3:已支付)
      */
      */
-    @Excel(name = "状态(0:打回 1:待支付 2:支付中 3:已支付)", width = 15)
     @ApiModelProperty(value = "状态(0:打回 1:待支付 2:支付中 3:已支付)")
     @ApiModelProperty(value = "状态(0:打回 1:待支付 2:支付中 3:已支付)")
     @Dict(dicCode = "payment_status")
     @Dict(dicCode = "payment_status")
     private java.lang.Integer status;
     private java.lang.Integer status;
@@ -156,6 +144,7 @@ public class HlwPayment implements Serializable {
      * 企业名称
      * 企业名称
      */
      */
     @TableField(exist = false)
     @TableField(exist = false)
+    @Excel(name = "商户名称", width = 15)
     private String companyName;
     private String companyName;
 
 
     /**
     /**
@@ -232,18 +221,6 @@ public class HlwPayment implements Serializable {
     @TableField(exist = false)
     @TableField(exist = false)
     private String paymentResultTime_end;  //所用结束时间
     private String paymentResultTime_end;  //所用结束时间
 
 
-    @TableField(exist = false)
-    private Integer paymentNumber;  //所用发单数
-
-    @TableField(exist = false)
-    private Double personalNetPayment;  //开票总额
-
-    @TableField(exist = false)
-    private Double personalTaxPayment;  //纳税总额(对应总开票额÷1.06×0.06注意四舍五入到分)
-
-
-    @TableField(exist = false)
-    private String provinceCityCountry; //省市区
 
 
 
 
 
 
@@ -297,9 +274,30 @@ public class HlwPayment implements Serializable {
      * 税号
      * 税号
      */
      */
     @TableField(exist = false)
     @TableField(exist = false)
+    @Excel(name = "税号", width = 15)
     private String dutyParagraph;
     private String dutyParagraph;
 
 
 
 
+    @TableField(exist = false)
+    @Excel(name = "所在地", width = 15)
+    private String provinceCityCountry; //省市区
+
+
+
+
+    @TableField(exist = false)
+    @Excel(name = "发单数", width = 15)
+    private Integer paymentNumber;  //所用发单数
+
+    @TableField(exist = false)
+    @Excel(name = "开票总额", width = 15)
+    private Double personalNetPayment;  //开票总额
+
+    @TableField(exist = false)
+    @Excel(name = "纳税总额", width = 15)
+    private Double personalTaxPayment;  //纳税总额(对应总开票额÷1.06×0.06注意四舍五入到分)
+
+
     /**
     /**
      * 开票状态(1、未开票 2、已开票)
      * 开票状态(1、未开票 2、已开票)
      */
      */

+ 0 - 19
happy-cloud-wisdom/happy-cloud-wisdom-biz/src/main/java/org/jeecg/modules/hlwpayment/entity/HlwPaymentDetail.java

@@ -39,7 +39,6 @@ public class HlwPaymentDetail implements Serializable {
     /**
     /**
      * 支付id
      * 支付id
      */
      */
-    @Excel(name = "支付id", width = 15)
     @ApiModelProperty(value = "支付id")
     @ApiModelProperty(value = "支付id")
     private java.lang.Integer paymentId;
     private java.lang.Integer paymentId;
     /**
     /**
@@ -63,67 +62,56 @@ public class HlwPaymentDetail implements Serializable {
     /**
     /**
      * 银行卡号
      * 银行卡号
      */
      */
-    @Excel(name = "银行卡号", width = 15)
     @ApiModelProperty(value = "银行卡号")
     @ApiModelProperty(value = "银行卡号")
     private java.lang.String cardNumber;
     private java.lang.String cardNumber;
     /**
     /**
      * Y:开户行是招商银行 N:开户行是他行
      * Y:开户行是招商银行 N:开户行是他行
      */
      */
-    @Excel(name = "Y:开户行是招商银行 N:开户行是他行", width = 15)
     @ApiModelProperty(value = "Y:开户行是招商银行 N:开户行是他行")
     @ApiModelProperty(value = "Y:开户行是招商银行 N:开户行是他行")
     private java.lang.String bnkflg;
     private java.lang.String bnkflg;
     /**
     /**
      * 他行开户行(他行时必填)
      * 他行开户行(他行时必填)
      */
      */
-    @Excel(name = "他行开户行(他行时必填)", width = 15)
     @ApiModelProperty(value = "他行开户行(他行时必填)")
     @ApiModelProperty(value = "他行开户行(他行时必填)")
     private java.lang.String eacbnk;
     private java.lang.String eacbnk;
     /**
     /**
      * 他行开户地址(他行时必填)
      * 他行开户地址(他行时必填)
      */
      */
-    @Excel(name = "他行开户地址(他行时必填)", width = 15)
     @ApiModelProperty(value = "他行开户地址(他行时必填)")
     @ApiModelProperty(value = "他行开户地址(他行时必填)")
     private java.lang.String rcveaa;
     private java.lang.String rcveaa;
     /**
     /**
      * 付款类型(0:应付 1:实付),付款时同步过来
      * 付款类型(0:应付 1:实付),付款时同步过来
      */
      */
-    @Excel(name = "付款类型(0:应付 1:实付),付款时同步过来", width = 15)
     @ApiModelProperty(value = "付款类型(0:应付 1:实付),付款时同步过来")
     @ApiModelProperty(value = "付款类型(0:应付 1:实付),付款时同步过来")
     private java.lang.Integer paymentType;
     private java.lang.Integer paymentType;
     /**
     /**
      * 应付金额
      * 应付金额
      */
      */
-    @Excel(name = "应付金额", width = 15)
     @ApiModelProperty(value = "应付金额")
     @ApiModelProperty(value = "应付金额")
     private Double payment;
     private Double payment;
     /**
     /**
      * 税率(例如0.06)
      * 税率(例如0.06)
      */
      */
-    @Excel(name = "税率(例如0.06)", width = 15)
     @ApiModelProperty(value = "税率(例如0.06)")
     @ApiModelProperty(value = "税率(例如0.06)")
     private Double taxRate;
     private Double taxRate;
     /**
     /**
      * 速算值
      * 速算值
      */
      */
-    @Excel(name = "速算值", width = 15)
     @ApiModelProperty(value = "速算值")
     @ApiModelProperty(value = "速算值")
     private Double calculationValue;
     private Double calculationValue;
     /**
     /**
      * 缴税额,payment*tax_rate
      * 缴税额,payment*tax_rate
      */
      */
-    @Excel(name = "缴税额,payment*tax_rate", width = 15)
     @ApiModelProperty(value = "缴税额,payment*tax_rate")
     @ApiModelProperty(value = "缴税额,payment*tax_rate")
     private Double taxFee;
     private Double taxFee;
     /**
     /**
      * 实付金额(到用户卡上金额,不包含税),payment-payment*tax_rate
      * 实付金额(到用户卡上金额,不包含税),payment-payment*tax_rate
      */
      */
-    @Excel(name = "实付金额(到用户卡上金额,不包含税),payment-payment*tax_rate", width = 15)
     @ApiModelProperty(value = "实付金额(到用户卡上金额,不包含税),payment-payment*tax_rate")
     @ApiModelProperty(value = "实付金额(到用户卡上金额,不包含税),payment-payment*tax_rate")
     private Double netPayment;
     private Double netPayment;
     /**
     /**
      * 付款时间(向银行提交付款按钮的时间)
      * 付款时间(向银行提交付款按钮的时间)
      */
      */
-    @Excel(name = "付款时间(向银行提交付款按钮的时间)", width = 15, format = "yyyy-MM-dd")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
     @DateTimeFormat(pattern = "yyyy-MM-dd")
     @DateTimeFormat(pattern = "yyyy-MM-dd")
     @ApiModelProperty(value = "付款时间(向银行提交付款按钮的时间)")
     @ApiModelProperty(value = "付款时间(向银行提交付款按钮的时间)")
@@ -131,13 +119,11 @@ public class HlwPaymentDetail implements Serializable {
     /**
     /**
      * 付款者
      * 付款者
      */
      */
-    @Excel(name = "付款者", width = 15)
     @ApiModelProperty(value = "付款者")
     @ApiModelProperty(value = "付款者")
     private java.lang.String paymentBy;
     private java.lang.String paymentBy;
     /**
     /**
      * 接口返回结果时间
      * 接口返回结果时间
      */
      */
-    @Excel(name = "接口返回结果时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @ApiModelProperty(value = "接口返回结果时间")
     @ApiModelProperty(value = "接口返回结果时间")
@@ -174,33 +160,28 @@ public class HlwPaymentDetail implements Serializable {
     /**
     /**
      * 状态(0:打回 1:待支付 2:支付中 3:已支付 4:支付失败)
      * 状态(0:打回 1:待支付 2:支付中 3:已支付 4:支付失败)
      */
      */
-    @Excel(name = "状态(0:打回 1:待支付 2:支付中 3:已支付 4:支付失败)", width = 15)
     @ApiModelProperty(value = "状态(0:打回 1:待支付 2:支付中 3:已支付 4:支付失败)")
     @ApiModelProperty(value = "状态(0:打回 1:待支付 2:支付中 3:已支付 4:支付失败)")
     @Dict(dicCode = "payment_result_status")
     @Dict(dicCode = "payment_result_status")
     private java.lang.Integer status;
     private java.lang.Integer status;
     /**
     /**
      * 付款失败原因
      * 付款失败原因
      */
      */
-    @Excel(name = "付款失败原因", width = 15)
     @ApiModelProperty(value = "付款失败原因")
     @ApiModelProperty(value = "付款失败原因")
     private java.lang.String failureReason;
     private java.lang.String failureReason;
     /**
     /**
      * 是否补发(0:不是 1:是)(一次付款成功此状态位为0,点补发按钮此状态位为1,付款状态以status为准)
      * 是否补发(0:不是 1:是)(一次付款成功此状态位为0,点补发按钮此状态位为1,付款状态以status为准)
      */
      */
-    @Excel(name = "是否补发(0:不是 1:是)(一次付款成功此状态位为0,点补发按钮此状态位为1,付款状态以status为准)", width = 15)
     @ApiModelProperty(value = "是否补发(0:不是 1:是)(一次付款成功此状态位为0,点补发按钮此状态位为1,付款状态以status为准)")
     @ApiModelProperty(value = "是否补发(0:不是 1:是)(一次付款成功此状态位为0,点补发按钮此状态位为1,付款状态以status为准)")
     private java.lang.String isSupplementPayment;
     private java.lang.String isSupplementPayment;
     /**
     /**
      * 完税申请id(只有支付成功才有此值)
      * 完税申请id(只有支付成功才有此值)
      */
      */
-    @Excel(name = "完税申请id(只有支付成功才有此值)", width = 15)
     @ApiModelProperty(value = "完税申请id(只有支付成功才有此值)")
     @ApiModelProperty(value = "完税申请id(只有支付成功才有此值)")
     private java.lang.Integer dutyApplyId;
     private java.lang.Integer dutyApplyId;
 
 
     /**
     /**
      * 订单id
      * 订单id
      */
      */
-    @Excel(name = "订单id", width = 15)
     @ApiModelProperty(value = "订单id")
     @ApiModelProperty(value = "订单id")
     private java.lang.Integer orderId;
     private java.lang.Integer orderId;