yanghb
2025-05-07 398e6d10892c428f2ff0e3f6485472d5509088e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.ruoyi.bussiness.object.response.placementBatch;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.ruoyi.common.easyExcel.BigDecimalConverter;
import com.ruoyi.common.easyExcel.DateConverter;
import com.ruoyi.common.easyExcel.NumberConverter;
import com.ruoyi.common.easyExcel.StringConverter;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class AssetExportResponse {
    @ExcelProperty(value = "镇(街道)", index = 0, converter = StringConverter.class)
    @ApiModelProperty(value = "镇(街道)")
    private String street;
 
    @ExcelProperty(value = "拆迁项目名称", index = 1, converter = StringConverter.class)
    @ApiModelProperty(value = "拆迁项目名称")
    private String projectName;
 
    @ExcelProperty(value = "所在村(社区)", index = 2, converter = StringConverter.class)
    @ApiModelProperty(value = "所在村(社区)")
    private String community;
 
    @ExcelProperty(value = "户主姓名", index = 3, converter = StringConverter.class)
    @ApiModelProperty(value = "户主姓名")
    private String householdHead;
 
    @ExcelIgnore
    @ApiModelProperty(value = "户主未通过安置申请提示(1未通过)")
    private Integer householdHeadWarn;
 
    @ExcelProperty(value = "身份证号", index = 4, converter = StringConverter.class)
    @ApiModelProperty(value = "身份证号")
    private String idCard;
 
    @ExcelIgnore
    @ApiModelProperty(value = "身份证不存在安置库")
    private Integer idCardWarn;
 
    @ExcelProperty(value = "应安置人数(人)", index = 5, converter = NumberConverter.class)
    @ApiModelProperty(value = "应安置人数(人)")
    private Integer resettledNum;
 
    @ExcelProperty(value = "所有家庭人员应安置面积(m²)", index = 6, converter = BigDecimalConverter.class)
    @ApiModelProperty(value = "所有家庭人员应安置面积(m²)")
    private BigDecimal resettledArea;
 
    @ExcelProperty(value = {"补偿单价标准", "新建商品房、商业用房、停车位"}, index = 7, converter = StringConverter.class)
    @ApiModelProperty(value = "补偿单价标准-新建商品房、商业用房、停车位")
    private String priceNewAmount;
 
    @ExcelProperty(value = {"补偿单价标准", "二手住房"}, index = 8, converter = StringConverter.class)
    @ApiModelProperty(value = "补偿单价标准-二手住房")
    private String priceOldAmount;
 
    @ExcelIgnore
    @ApiModelProperty(value = "多个购房情况警告(新建房和二手住房都录入了)")
    private Integer twoPriceWarn;
 
    @ExcelIgnore
    @ApiModelProperty(value = "补偿标准数据异常(不等于补偿协议里面写的)")
    private Integer priceAmountWarn;
 
    @ExcelProperty(value = "补偿总价(万元)", index = 9, converter = BigDecimalConverter.class)
    @ApiModelProperty(value = "补偿总价(万元)")
    private BigDecimal compensationAmount;
 
    @ExcelIgnore
    @ApiModelProperty(value = "补偿总价异常")
    private Integer compensationSumWarn;
 
    @ExcelProperty(value = "25%首付款(万元)", index = 10, converter = BigDecimalConverter.class)
    @ApiModelProperty(value = "25%首付款(万元)")
    private BigDecimal downPaymentAmount;
 
    @ExcelIgnore
    @ApiModelProperty(value = "首付款警告")
    private Integer downPaymentAmountWarn;
 
    @ExcelProperty(value = "每季度需支付款项(万元)", index = 11, converter = BigDecimalConverter.class)
    @ApiModelProperty(value = "每季度需支付款项(万元)")
    private BigDecimal quarterPayAmount;
 
    @ExcelIgnore
    @ApiModelProperty(value = "每季度需支付款警告")
    private Integer quarterPayAmountWarn;
 
    @ExcelProperty(value = "过渡补贴(万元)", index = 12, converter = BigDecimalConverter.class)
    @ApiModelProperty(value = "过渡补贴(万元)")
    private BigDecimal subsidyAmount;
 
    @ExcelIgnore
    @ApiModelProperty(value = "过渡补贴警告")
    private Integer subsidyAmountWarn;
}