yanghb
2025-04-28 555d2e4b1897519be8a34b86951ff6fb2d589591
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.bussiness.object.response.screen;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ImportErrorResponse {
 
    @ApiModelProperty(value = "月份")
    private String month;
 
    @ApiModelProperty(value = "安置面积异常")
    private Integer areaErrorCount;
 
    @ApiModelProperty(value = "补偿异常异常")
    private Integer moneyErrorCount;
 
}