From 5ddc9b524c221277c8878be5fd9ec62a34af17b2 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Sat, 10 Jul 2021 00:31:57 +0800
Subject: [PATCH] 1.派遣单位,招聘,装备,车辆,枪支 修改绑定值为 deptId 2. 用户page接口修改,新增查询条件
---
src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml b/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
index ba760af..d2f3912 100644
--- a/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
+++ b/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
@@ -22,6 +22,7 @@
<result column="registration" property="registration"/>
<result column="industry" property="industry"/>
<result column="tenantId" property="tenantid"/>
+ <result column="stats" property="stats"/>
</resultMap>
@@ -33,6 +34,9 @@
<if test="information.representative!=null and information.representative!=''">
and representative like concat(concat('%', #{information.representative}),'%')
</if>
+ <if test="information.stats!=null and information.stats!=''">
+ and stats=#{stats}
+ </if>
</select>
</mapper>
--
Gitblit v1.9.3