forked from gzzfw/backEnd/gz-dyh

liyj
2024-09-18 1a320ae74056c99a439e0608a7243953cdef8ddd
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
package cn.huge.module.cases.domain.dto;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author zhouxiantao
 * @create 2024-09-07 15:15
 */
@Data
public class CaseInfoWeExcelDTO {
    @ExcelProperty(value="事项状态")
    private String statusName;
    @ExcelProperty(value="事项来源")
    private String canalName;
    @ExcelProperty(value="事项等级")
    private Integer caseLevel;
    @ExcelProperty(value="纠纷类型")
    private String caseTypeName;
    @ExcelProperty(value="承办部门")
    private String mediateUnitName;
    @ExcelProperty(value="配合部门")
    private String assistUnitName;
    @ExcelProperty(value="化解结果")
    private String mediResultName;
    @ExcelProperty(value="办结时间")
    private String closeTime;
    @ExcelProperty(value="申请人")
    private String plaintiffStr;
    @ExcelProperty(value="被申请人")
    private String defendantStr;
    @ExcelProperty(value="登记机构")
    private String inputUnitName;
}