| | |
| | | package cn.huge.module.cases.domain.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | |
| | | */ |
| | | private String processStatusName; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 事项概况 |
| | | */ |
| | | private String caseDes; |
| | | |
| | | /** |
| | | * 事项申请 |
| | | */ |
| | | private String caseClaim; |
| | | |
| | | /** |
| | | * 实际调解部门编号(承办部门) |
| | | */ |
| | | private String mediateDeptId; |
| | | |
| | | /** |
| | | * 实际调解部门名称(承办部门) |
| | | */ |
| | | private String mediateDeptName; |
| | | |
| | | /** |
| | | * 调解结果 |
| | | */ |
| | | private String mediResult; |
| | | |
| | | /** |
| | | * 调解结果名称 |
| | | */ |
| | | private String mediResultName; |
| | | /** |
| | | * 是否已经评价 0-否,1-是 |
| | | * */ |
| | | private String isEvaluate; |
| | | |
| | | /** |
| | | * 申请人集合 |
| | | * */ |
| | | private List<CasePersonWechatDTO> plaintiffList; |
| | |
| | | * 被申请人集合 |
| | | * */ |
| | | private List<CasePersonWechatDTO> defendantList; |
| | | |
| | | /** |
| | | * 申请代理人集合 |
| | | * */ |
| | | private List<CasePersonWechatDTO> pagentList; |
| | | /** |
| | | * 被申请代理人集合 |
| | | * */ |
| | | private List<CasePersonWechatDTO> dagentList; |
| | | } |