提交 8b98d858 编写于 作者: zhehao.chen's avatar zhehao.chen

Merge branch 'dev-crm-0909' into 'release'

Dev crm 0909

See merge request !124
流水线 #50786 已失败 于阶段
......@@ -20,8 +20,10 @@ public class HospitalSaasUserDto {
private String name;
@ApiModelProperty("机构id")
private Long hospitalId;
@ApiModelProperty("手机号")
@ApiModelProperty("手机号(密文)")
private String mobile;
@ApiModelProperty("手机号(明文)")
private String phone;
@ApiModelProperty("备注")
private String comment;
@ApiModelProperty("角色")
......
......@@ -224,6 +224,7 @@ public class HospitalSaasUserServiceImpl implements HospitalSaasUserService {
String phone = EncryptUtils.decryptContent(t.getMobile(), EncryptConstants.ENCRYPT_TYPE_MOBILE, EncryptConstants.ENCRYPT_DECRYPT_KEY);
String mixMobile = mixMobile(phone);
t.setMobile(mixMobile);
t.setPhone(phone);
});
return new HospitalSaasUserResp(lists, count);
}
......
......@@ -355,6 +355,9 @@
<if test="comment != null">
comment = #{comment,jdbcType=VARCHAR},
</if>
<if test="comment == null">
comment = null,
</if>
<if test="registerType != null">
register_type = #{registerType,jdbcType=INTEGER},
</if>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册