Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -161,6 +161,12 @@
|
|||||||
#{item}
|
#{item}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</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">
|
<if test="param.province != null">
|
||||||
AND a.province LIKE CONCAT('%', #{param.province}, '%')
|
AND a.province LIKE CONCAT('%', #{param.province}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -247,6 +247,10 @@ public class UserParam extends BaseParam {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private Set<String> phones;
|
private Set<String> phones;
|
||||||
|
|
||||||
|
@ApiModelProperty("用户身份证集合")
|
||||||
|
@TableField(exist = false)
|
||||||
|
private Set<String> idCards;
|
||||||
|
|
||||||
@ApiModelProperty("是否查询用户详细资料表")
|
@ApiModelProperty("是否查询用户详细资料表")
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private Boolean showProfile;
|
private Boolean showProfile;
|
||||||
|
|||||||
Reference in New Issue
Block a user