Commit 732289a5 by 袁伟铭

新增APP用户时默认密码改变

parent 214389be
......@@ -119,7 +119,7 @@ public class UserService {
.name(pfuser.getUsername())
.age(pfuser.getSex().intValue())
.phone(pfuser.getPhone())
.password(DigestUtils.md5DigestAsHex("123456".getBytes()))
.password(DigestUtils.md5DigestAsHex("gxmz!23".getBytes()))
.userType(pfuser.getType().intValue())
.age(StrUtil.isBlank(pfuser.getIdcardno()) ? 0 : IdcardUtil.getAgeByIdCard(pfuser.getIdcardno()))
.status(pfuser.getState().intValue())
......@@ -136,7 +136,7 @@ public class UserService {
.gender(pfuser.getSex() == null ? "未知" : pfuser.getSex() == 0 ? "男" : "女")
.phone(phone)
.email(pfuser.getSourcemail())
.password(passwordEncoder.encode("123456"))
.password(passwordEncoder.encode("gxmz!23"))
.isAdmin(false)
.enabled(1L)
.createBy("admin")
......
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