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 createTime; @ExcelProperty(value="登记机构") private String inputUnitName; @ExcelProperty(value="问题归属地") private String areaName; @ExcelProperty(value="事项来源") private String canalName; @ExcelProperty(value="事项等级") private Integer caseLevel; @ExcelProperty(value="纠纷类型") private String caseTypeName; @ExcelProperty(value="承办部门") private String mediateUnitName; @ExcelProperty(value="事项状态") private String statusName; @ExcelProperty(value="办结时间") private String closeTime; @ExcelProperty(value="化解结果") private String mediResultName; @ExcelProperty(value="申请人") private String plaintiffs; @ExcelProperty(value="被申请人") private String defendants; }