From c16a867c943e25a25d64f02fb95e755ef1a7c9f9 Mon Sep 17 00:00:00 2001
From: liyj <15602261488@163.com>
Date: Mon, 30 Sep 2024 18:03:25 +0800
Subject: [PATCH] 1、审核过程中申请记录的申请时间和申请人无法查看 2、审核联合处置申请在申请部门已办结后会报错,且无法继续审核 3、案件不予受理后在已办中无记录 4、上报的案件上级部门回退后下级部门接收不到 5、广州市综治中心纠纷依然可以选择上报,且点击上报后报错
---
dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowNodeMapper.xml | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowNodeMapper.xml b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowNodeMapper.xml
index 351cdd4..ab4d572 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowNodeMapper.xml
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowNodeMapper.xml
@@ -5,7 +5,7 @@
* @description: 自定义sql,请自行实现业务逻辑
* @company: hugeinfo
* @author: liyj
- * @time:2024-09-06 15:50:06
+ * @time:2024-09-08 15:09:08
* @version 1.0.0
-->
<mapper namespace="cn.huge.module.flow.dao.mapper.FlowNodeMapper">
@@ -22,6 +22,8 @@
<result property="nodeIcon" column="node_icon"/>
<result property="apiType" column="api_type"/>
<result property="api" column="api"/>
+ <result property="caseProcess" column="case_process"/>
+ <result property="caseProcessName" column="case_process_name"/>
<result property="expire" column="expire"/>
<result property="candeType" column="cande_type"/>
<result property="candeUnitId" column="cande_unit_id"/>
@@ -55,6 +57,8 @@
node_icon,
api_type,
api,
+ case_process,
+ case_process_name,
expire,
cande_type,
cande_unit_id,
@@ -85,6 +89,8 @@
<if test="entity.nodeIcon != null">node_icon = #{entity.nodeIcon},</if>
<if test="entity.apiType != null">api_type = #{entity.apiType},</if>
<if test="entity.api != null">api = #{entity.api},</if>
+ <if test="entity.caseProcess != null">case_process = #{entity.caseProcess},</if>
+ <if test="entity.caseProcessName != null">case_process_name = #{entity.caseProcessName},</if>
<if test="entity.expire != null">expire = #{entity.expire},</if>
<if test="entity.candeType != null">cande_type = #{entity.candeType},</if>
<if test="entity.candeUnitId != null">cande_unit_id = #{entity.candeUnitId},</if>
@@ -140,6 +146,12 @@
<if test="terms.api != null and terms.api !=''">
and api = #{terms.api}
</if>
+ <if test="terms.caseProcess != null and terms.caseProcess !=''">
+ and case_process = #{terms.caseProcess}
+ </if>
+ <if test="terms.caseProcessName != null and terms.caseProcessName !=''">
+ and case_process_name = #{terms.caseProcessName}
+ </if>
<if test="terms.expire != null and terms.expire !=''">
and expire = #{terms.expire}
</if>
--
Gitblit v1.8.0