Commit 49b27377 authored by H2T's avatar H2T

BUG:15050人员管理-两员配备-编辑添加任命文件

parent 7100ec6c
......@@ -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;
/**
* 账户名
......
......@@ -185,6 +185,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