通讯录日志查询修改

master
Xusan 2024-05-21 10:38:57 +08:00
parent 1ef9a82f40
commit abd9a66800
2 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,9 @@ public class CommDto extends FindPageDto {
@ApiModelProperty(value = "用户手机号") @ApiModelProperty(value = "用户手机号")
private String phone; private String phone;
@ApiModelProperty(value = "通讯录编号")
private String abId;
@ApiModelProperty(value = "0:添加用户,1:修改用户,2:修改权限,3:删除用户") @ApiModelProperty(value = "0:添加用户,1:修改用户,2:修改权限,3:删除用户")
private String type; private String type;

View File

@ -14,6 +14,9 @@
<if test="dto.phone != null and dto.phone != '' "> <if test="dto.phone != null and dto.phone != '' ">
AND A.PHONE LIKE CONCAT('%', #{dto.phone}, '%') AND A.PHONE LIKE CONCAT('%', #{dto.phone}, '%')
</if> </if>
<if test="dto.abId != null and dto.abId != '' ">
AND A.ID = #{dto.abId}
</if>
<if test="dto.type != null and dto.type != '' "> <if test="dto.type != null and dto.type != '' ">
AND A.TYPE = #{dto.type} AND A.TYPE = #{dto.type}
</if> </if>