新增:UserVerify新增organizationId字段

This commit is contained in:
2025-06-23 00:40:10 +08:00
parent 6e4d41cff2
commit 5404cc5689
3 changed files with 17 additions and 0 deletions

View File

@@ -65,6 +65,9 @@ public class UserVerify implements Serializable {
@ApiModelProperty(value = "审核人") @ApiModelProperty(value = "审核人")
private Integer adminId; private Integer adminId;
@ApiModelProperty(value = "机构ID")
private Integer organizationId;
@ApiModelProperty(value = "备注") @ApiModelProperty(value = "备注")
private String comments; private String comments;

View File

@@ -38,6 +38,12 @@
<if test="param.zzCode != null"> <if test="param.zzCode != null">
AND a.zz_code = #{param.zzCode} AND a.zz_code = #{param.zzCode}
</if> </if>
<if test="param.adminId != null">
AND a.admin_id = #{param.adminId}
</if>
<if test="param.organizationId != null">
AND a.organization_id = #{param.organizationId}
</if>
<if test="param.comments != null"> <if test="param.comments != null">
AND a.comments LIKE CONCAT('%', #{param.comments}, '%') AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
</if> </if>

View File

@@ -57,6 +57,14 @@ public class UserVerifyParam extends BaseParam {
@QueryField(type = QueryType.EQ) @QueryField(type = QueryType.EQ)
private String zzCode; 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 = "备注") @ApiModelProperty(value = "备注")
private String comments; private String comments;