From 5404cc56894179ad538ae698930ab5569421330c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com>
Date: Mon, 23 Jun 2025 00:40:10 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=EF=BC=9AUserVerify=E6=96=B0?=
=?UTF-8?q?=E5=A2=9EorganizationId=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../com/gxwebsoft/common/system/entity/UserVerify.java | 3 +++
.../common/system/mapper/xml/UserVerifyMapper.xml | 6 ++++++
.../gxwebsoft/common/system/param/UserVerifyParam.java | 8 ++++++++
3 files changed, 17 insertions(+)
diff --git a/src/main/java/com/gxwebsoft/common/system/entity/UserVerify.java b/src/main/java/com/gxwebsoft/common/system/entity/UserVerify.java
index a8486e0..f6cccc2 100644
--- a/src/main/java/com/gxwebsoft/common/system/entity/UserVerify.java
+++ b/src/main/java/com/gxwebsoft/common/system/entity/UserVerify.java
@@ -65,6 +65,9 @@ public class UserVerify implements Serializable {
@ApiModelProperty(value = "审核人")
private Integer adminId;
+ @ApiModelProperty(value = "机构ID")
+ private Integer organizationId;
+
@ApiModelProperty(value = "备注")
private String comments;
diff --git a/src/main/java/com/gxwebsoft/common/system/mapper/xml/UserVerifyMapper.xml b/src/main/java/com/gxwebsoft/common/system/mapper/xml/UserVerifyMapper.xml
index e0d1cc7..e555436 100644
--- a/src/main/java/com/gxwebsoft/common/system/mapper/xml/UserVerifyMapper.xml
+++ b/src/main/java/com/gxwebsoft/common/system/mapper/xml/UserVerifyMapper.xml
@@ -38,6 +38,12 @@
AND a.zz_code = #{param.zzCode}
+
+ AND a.admin_id = #{param.adminId}
+
+
+ AND a.organization_id = #{param.organizationId}
+
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
diff --git a/src/main/java/com/gxwebsoft/common/system/param/UserVerifyParam.java b/src/main/java/com/gxwebsoft/common/system/param/UserVerifyParam.java
index f0ec164..223d943 100644
--- a/src/main/java/com/gxwebsoft/common/system/param/UserVerifyParam.java
+++ b/src/main/java/com/gxwebsoft/common/system/param/UserVerifyParam.java
@@ -57,6 +57,14 @@ public class UserVerifyParam extends BaseParam {
@QueryField(type = QueryType.EQ)
private String zzCode;
+ @ApiModelProperty(value = "管理员ID")
+ @QueryField(type = QueryType.EQ)
+ private Integer adminId;
+
+ @ApiModelProperty(value = "机构ID")
+ @QueryField(type = QueryType.EQ)
+ private Integer organizationId;
+
@ApiModelProperty(value = "备注")
private String comments;