package cn.huge.module.cases.domain.dto;
|
|
import cn.huge.module.cases.domain.po.CaseInfo;
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @title: 工作台-扬言极端
|
* @description: 作台-待办列表-传输对象-办理中
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2024-09-21 09:36:25
|
* @version: 1.0.0
|
* @see CaseInfo
|
*/
|
@Data
|
public class FrontPageListYYJDDTO {
|
/**
|
* 纠纷信息编号
|
*/
|
@ExcelIgnore
|
private String caseId;
|
|
/**
|
* 纠纷任务信息编号
|
*/
|
@ExcelIgnore
|
private String caseTaskId;
|
|
/**
|
* 创建时间
|
*/
|
@ExcelProperty(value="创建时间")
|
private Date turnaroundTime;
|
|
/**
|
* 事项来源
|
*/
|
@ExcelProperty(value="事项来源")
|
private String caseSource;
|
|
/**
|
* 事项等级
|
*/
|
@ExcelProperty(value="事项等级")
|
private Integer caseGrade;
|
|
/**
|
* 涉及人数
|
*/
|
@ExcelProperty(value="涉及人数")
|
private Integer peopleNum;
|
|
/**
|
* 纠纷类型
|
*/
|
@ExcelProperty(value="纠纷类型")
|
private String caseType;
|
|
/**
|
* 申请方
|
*/
|
@ExcelProperty(value="申请方")
|
private String plaintiffs;
|
|
/**
|
* 被申请方
|
*/
|
@ExcelProperty(value="被申请方")
|
private String defendants;
|
|
/**
|
* 事项状态,1:待分派,2:待签收,3:待受理,4:化解中,5:结案审核,6:待评价,7:已归档,8:不予受理
|
*/
|
@ExcelIgnore
|
private String status;
|
|
/**
|
* 事项状态名称
|
*/
|
@ExcelProperty(value="事项状态")
|
private String statusName;
|
|
/**
|
* 承办部门
|
*/
|
@ExcelProperty(value="承办部门")
|
private String organizingUnit;
|
|
/**
|
* 经办人名称
|
*/
|
@ExcelProperty(value="经办人")
|
private String mediator;
|
|
/**
|
* 调解结果
|
*/
|
@ExcelIgnore
|
private String mediResult;
|
|
/**
|
* 调解结果名称
|
*/
|
@ExcelProperty(value="调解结果")
|
private String mediResultName;
|
|
/**
|
* 问题属地
|
*/
|
@ExcelProperty(value="问题属地")
|
private String queAddress;
|
|
/**
|
* 督办次数
|
*/
|
@ExcelProperty(value="督办次数")
|
private int superviseCount;
|
}
|