通讯录查询修改

master
Xusan 2024-05-16 14:58:58 +08:00
parent 555857765d
commit 49490b3395
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,9 @@ public class AddressBootDto extends CommDto{
@ApiModelProperty(value = "0:组织,1:单位")
private String type;
@ApiModelProperty(value = "0:常用联系人,1:置顶联系人")
private String ftype;
@ApiModelProperty(value = "行政区划")
private String adcd;

View File

@ -18,6 +18,9 @@
<if test="dto.type != null and dto.type != '' ">
AND R.TYPE = #{dto.type}
</if>
<if test="dto.type != null and dto.type != '' ">
AND F.TYPE = #{dto.ftype}
</if>
<if test="dto.name != null and dto.name != '' ">
AND AB.NAME LIKE CONCAT('%', #{dto.name}, '%')
</if>