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 mediResultName;
|
@ExcelProperty(value="实际调解部门")
|
private String mediateDeptName;
|
@ExcelProperty(value="登记组织")
|
private String inputUnitName;
|
@ExcelProperty(value="申请人")
|
private String plaintiffStr;
|
@ExcelProperty(value="被申请人")
|
private String defendantStr;
|
}
|