Pu Zhibing
2025-04-22 d138293736414a314467a2641e6116ff263ead48
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
package com.ruoyi.bussiness.object.response.report;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ReportResponse {
 
    @ApiModelProperty(value = "街道")
    private String street;
 
    @ApiModelProperty(value = "总人数(安置人数)")
    private Integer currentCount;
 
    @ApiModelProperty(value = "补偿总金额")
    private BigDecimal compensationSum;
 
    @ApiModelProperty(value = "首付款")
    private BigDecimal downPaymentAmount;
 
    @ApiModelProperty(value = "过渡补贴")
    private BigDecimal subsidyAmount;
 
 
 
}