通讯录查询修改
parent
555857765d
commit
49490b3395
|
|
@ -16,6 +16,9 @@ public class AddressBootDto extends CommDto{
|
||||||
@ApiModelProperty(value = "0:组织,1:单位")
|
@ApiModelProperty(value = "0:组织,1:单位")
|
||||||
private String type;
|
private String type;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0:常用联系人,1:置顶联系人")
|
||||||
|
private String ftype;
|
||||||
|
|
||||||
@ApiModelProperty(value = "行政区划")
|
@ApiModelProperty(value = "行政区划")
|
||||||
private String adcd;
|
private String adcd;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,9 @@
|
||||||
<if test="dto.type != null and dto.type != '' ">
|
<if test="dto.type != null and dto.type != '' ">
|
||||||
AND R.TYPE = #{dto.type}
|
AND R.TYPE = #{dto.type}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="dto.type != null and dto.type != '' ">
|
||||||
|
AND F.TYPE = #{dto.ftype}
|
||||||
|
</if>
|
||||||
<if test="dto.name != null and dto.name != '' ">
|
<if test="dto.name != null and dto.name != '' ">
|
||||||
AND AB.NAME LIKE CONCAT('%', #{dto.name}, '%')
|
AND AB.NAME LIKE CONCAT('%', #{dto.name}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue