Merge remote-tracking branch 'origin/master'

This commit is contained in:
2025-04-24 22:01:54 +08:00
2 changed files with 10 additions and 0 deletions

View File

@@ -161,6 +161,12 @@
#{item}
</foreach>
</if>
<if test="param.idCards != null">
AND a.id_card IN
<foreach collection="param.idCards" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="param.province != null">
AND a.province LIKE CONCAT('%', #{param.province}, '%')
</if>

View File

@@ -247,6 +247,10 @@ public class UserParam extends BaseParam {
@TableField(exist = false)
private Set<String> phones;
@ApiModelProperty("用户身份证集合")
@TableField(exist = false)
private Set<String> idCards;
@ApiModelProperty("是否查询用户详细资料表")
@TableField(exist = false)
private Boolean showProfile;