From ea33d776b80969e526448baafd1c310f0f15b862 Mon Sep 17 00:00:00 2001 From: yanghb <yangbhwork@163.com> Date: 星期日, 27 四月 2025 15:00:41 +0800 Subject: [PATCH] fix: 导出类型 --- cz-bussiness/src/main/java/com/ruoyi/bussiness/object/response/placementBatch/AssetExportResponse.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cz-bussiness/src/main/java/com/ruoyi/bussiness/object/response/placementBatch/AssetExportResponse.java b/cz-bussiness/src/main/java/com/ruoyi/bussiness/object/response/placementBatch/AssetExportResponse.java index 38a5a5e..5790bd0 100644 --- a/cz-bussiness/src/main/java/com/ruoyi/bussiness/object/response/placementBatch/AssetExportResponse.java +++ b/cz-bussiness/src/main/java/com/ruoyi/bussiness/object/response/placementBatch/AssetExportResponse.java @@ -42,13 +42,13 @@ @ApiModelProperty(value = "所有家庭人员应安置面积(m²)") private BigDecimal resettledArea; - @ExcelProperty(value = {"补偿单价标准", "新建商品房、商业用房、停车位"}, index = 7, converter = BigDecimalConverter.class) + @ExcelProperty(value = {"补偿单价标准", "新建商品房、商业用房、停车位"}, index = 7, converter = StringConverter.class) @ApiModelProperty(value = "补偿单价标准-新建商品房、商业用房、停车位") - private BigDecimal priceNewAmount; + private String priceNewAmount; - @ExcelProperty(value = {"补偿单价标准", "二手住房"}, index = 8, converter = BigDecimalConverter.class) + @ExcelProperty(value = {"补偿单价标准", "二手住房"}, index = 8, converter = StringConverter.class) @ApiModelProperty(value = "补偿单价标准-二手住房") - private BigDecimal priceOldAmount; + private String priceOldAmount; @ExcelProperty(value = "补偿总价(万元)", index = 9, converter = BigDecimalConverter.class) @ApiModelProperty(value = "补偿总价(万元)") -- Gitblit v1.7.1