bugfixed: 被禁用、删除商家后, 返回403
| | |
| | | |
| | | @Select("<script>" + |
| | | "select * from com_act_message " + |
| | | " where (sendto_user_id in (select id from com_pb_member_role t1 where t1.phone=#{comActMessageVO.phone})) " + |
| | | " or (sendto_user_id in (select id from com_pb_service_team t2 where t2.phone=#{comActMessageVO.phone}))" + |
| | | " where " + |
| | | " ((sendto_user_id in (select id from com_pb_member_role t1 where t1.phone=#{comActMessageVO.phone})) " + |
| | | " or (sendto_user_id in (select id from com_pb_service_team t2 where t2.phone=#{comActMessageVO.phone})))" + |
| | | "<if test='comActMessageVO.status != null'>" + |
| | | " and status=#{comActMessageVO.status} \n" + |
| | | " </if> " + |
| | |
| | | String userInfo = request.getHeader(TokenConstant.TOKEN_USERINFO); |
| | | boolean empty = ObjectUtils.isEmpty(userInfo); |
| | | if (empty) { |
| | | log.error("操作日志获取登录用户信息失败【{}】", request); |
| | | log.error("获取登录用户信息失败【{}】", request); |
| | | return; |
| | | } |
| | | byte[] bytes = AES.parseHexStr2Byte(userInfo); |