通讯录日志查询修改
parent
1ef9a82f40
commit
abd9a66800
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue