通讯录查询修改

master
Xusan 2024-05-16 16:24:51 +08:00
parent 5ad75aceb0
commit 98a9cdd84a
2 changed files with 5 additions and 1 deletions

View File

@ -27,4 +27,8 @@ public class AddressBookVo extends AddressBook{
@TableField(exist = false)
@ApiModelProperty(value = "常用联系人id")
private Integer fcid;
@TableField(exist = false)
@ApiModelProperty(value = "0:常用联系人,1:置顶联系人,2: 组织置顶,3: 单位置顶,4: 行政区划置顶")
private Integer ftype;
}

View File

@ -5,7 +5,7 @@
<select id="page" resultType="com.whdc.model.vo.AddressBookVo">
SELECT
AB.*,F.SORT FSORT,F.ID FCID,U.ROLE
AB.*,F.SORT FSORT,F.ID FCID,U.ROLE,F.TYPE FTYPE
FROM
ADDRESS_BOOK AB
LEFT JOIN AB_UD_R R ON R.AD_ID = AB.ID