Commit ac9ac754 authored by tianyiming's avatar tianyiming

Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register

parents 597238ff 49b27377
......@@ -100,6 +100,12 @@ public class TzsUserInfo extends BaseEntity {
@TableField(value = "identification")
private String identification;
/**
* 证件照片
*/
@TableField(value = "appoint_doc")
private String appointDoc;
/**
* 账户名
......
......@@ -84,6 +84,12 @@ public class TzsUserInfoVo {
@TableField(value = "identification")
private List identification;
/**
* 证件照片
*/
@TableField(value = "appoint_doc")
private List appointDoc;
/**
* 账户名
......
......@@ -187,6 +187,7 @@ public class TzsUserInfoServiceImpl extends BaseService<TzsUserInfoDto, TzsUserI
}
tzsUserInfoVo.setIdentification(ObjectUtils.isEmpty(tzsUserInfo.getIdentification()) ? new ArrayList() : JSON.parseArray(tzsUserInfo.getIdentification()));
tzsUserInfoVo.setProfile(ObjectUtils.isEmpty(tzsUserInfo.getProfile()) ? new ArrayList() : JSON.parseArray(tzsUserInfo.getProfile()));
tzsUserInfoVo.setAppointDoc(ObjectUtils.isEmpty(tzsUserInfo.getAppointDoc()) ? new ArrayList() : JSON.parseArray(tzsUserInfo.getAppointDoc()));
maps.put("userInfo", tzsUserInfoVo);
// LambdaQueryWrapper<TzsUserQualifications> lambda = new QueryWrapper<TzsUserQualifications>().lambda();
// lambda.eq(TzsUserQualifications::getUserInfoId, id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment