From dc61b0c48dbcf1c085c1ec955450989105a4a14f Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Thu, 17 Feb 2022 16:19:52 +0800
Subject: [PATCH] 1. 辖区tree 接口新增修改 2. 材料上传接口修改,去除licet_id 3. 材料展示接口修改,对接大数据平台,通过读取请求头参数来返回相应的请求参数
---
src/main/java/org/springblade/modules/directive/mapper/DirectiveMapper.xml | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/directive/mapper/DirectiveMapper.xml b/src/main/java/org/springblade/modules/directive/mapper/DirectiveMapper.xml
index 38ee2c1..a955914 100644
--- a/src/main/java/org/springblade/modules/directive/mapper/DirectiveMapper.xml
+++ b/src/main/java/org/springblade/modules/directive/mapper/DirectiveMapper.xml
@@ -16,13 +16,19 @@
where
1=1
<if test="directive.type!=null and directive.type!=''">
- and sll.type = #{directive.type}
+ and sd.type = #{directive.type}
</if>
<if test="directive.startTime!=null and directive.startTime!=''">
- and sl.send_time >= #{directive.startTime}
+ and sd.send_time >= #{directive.startTime}
</if>
<if test="directive.endTime!=null and directive.endTime!=''">
- and sl.send_time <= #{directive.endTime}
+ and sd.send_time <= #{directive.endTime}
+ </if>
+ <if test="directive.sendDirectiveId!=null and directive.sendDirectiveId!=''">
+ and sd.send_directive_id like concat('%', #{directive.sendDirectiveId},'%')
+ </if>
+ <if test="directive.receiveDirectiveIds!=null and directive.receiveDirectiveIds!=''">
+ and sd.receive_directive_ids like concat('%', #{directive.receiveDirectiveIds},'%')
</if>
</select>
--
Gitblit v1.9.3