操作密码加密规则修改

This commit is contained in:
张松 2025-03-05 16:56:45 +08:00
parent bdecc4542e
commit 8cf1e68cb7
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class ShopInfoServiceImpl extends ServiceImpl<ShopInfoMapper, ShopInfo> i
throw new ApiNotPrintException("验证码错误");
}
shopInfo.setOperationPwd(SecureUtil.md5(shopInfo.getId() + shopInfoEditDTO.getOperationPwd()));
shopInfo.setOperationPwd(SecureUtil.md5(shopInfoEditDTO.getOperationPwd()));
}
return updateById(shopInfo);
}