forked from gzzfw/backEnd/gz-dyh

zhouxiantao
2024-09-11 b438353f12223c86c7baad00803dc7950ed402d6
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/CaseInfoWeChatDTO.java
@@ -1,5 +1,7 @@
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;
@@ -43,6 +45,45 @@
     */
    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;
@@ -50,4 +91,13 @@
     * 被申请人集合
     * */
    private List<CasePersonWechatDTO> defendantList;
    /**
     * 申请代理人集合
     * */
    private List<CasePersonWechatDTO> pagentList;
    /**
     * 被申请代理人集合
     * */
    private List<CasePersonWechatDTO> dagentList;
}