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;