广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.huge.module.cases.domain.dto;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author zhouxiantao
 * @create 2025-04-15 10:25
 */
@Data
public class CaseInfoWeAreaExcelDTO {
    @ExcelProperty(value="序号")
    private String sort;
    @ExcelProperty(value="地区")
    private String areaName;
    @ExcelProperty(value="总登记")
    private Integer caseNum;
    @ExcelProperty(value="化解中")
    private Integer resolveingNum;
    @ExcelProperty(value="已结案")
    private Integer finishNUm;
    @ExcelProperty(value="不予受理")
    private Integer rejectNum;
}