From 4c777f25ef30ccb4356822fc4512cb4034dab6b0 Mon Sep 17 00:00:00 2001 From: wangwh <2397901735@qq.com> Date: Wed, 11 Sep 2024 11:58:31 +0800 Subject: [PATCH] 1、新增经纬度转换属地接口 2、修改办理结果查询接口 3、修改小程序属地查询接口 4、修改办理信息查询接口 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/CaseInfoWeChatDTO.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/CaseInfoWeChatDTO.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/CaseInfoWeChatDTO.java index 84e6e92..4ffde52 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/CaseInfoWeChatDTO.java +++ b/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; } -- Gitblit v1.8.0