Browse Source

更改bug

xie.kaifeng 8 tháng trước cách đây
mục cha
commit
aa34838b5e

+ 0 - 40
mtp3-century/src/main/java/com/muchinfo/mtp3century/configuration/FastJson2JsonRedisSerializer.java

@@ -1,40 +0,0 @@
-package com.muchinfo.mtp3century.configuration;
-
-import com.alibaba.fastjson2.JSON;
-import com.alibaba.fastjson2.JSONReader;
-import com.alibaba.fastjson2.JSONWriter;
-import org.springframework.data.redis.serializer.RedisSerializer;
-import org.springframework.data.redis.serializer.SerializationException;
-
-import java.nio.charset.Charset;
-import java.nio.charset.StandardCharsets;
-
-public class FastJson2JsonRedisSerializer<T> implements RedisSerializer<T> {
-    public static final Charset DEFAULT_CHARSET = StandardCharsets.UTF_8;
-    private final Class<T> clazz;
-
-    public FastJson2JsonRedisSerializer(Class<T> clazz) {
-        super();
-        this.clazz = clazz;
-    }
-
-    @Override
-    public byte[] serialize(T t) throws SerializationException {
-        if (t == null)
-        {
-            return new byte[0];
-        }
-        return JSON.toJSONString(t, JSONWriter.Feature.WriteClassName).getBytes(DEFAULT_CHARSET);
-    }
-
-    @Override
-    public T deserialize(byte[] bytes) throws SerializationException {
-        if (bytes == null || bytes.length <= 0)
-        {
-            return null;
-        }
-        String str = new String(bytes, DEFAULT_CHARSET);
-
-        return JSON.parseObject(str, clazz, JSONReader.Feature.SupportAutoType);
-    }
-}

+ 3 - 2
mtp3-century/src/main/java/com/muchinfo/mtp3century/service/impl/TaaccountServiceImpl.java

@@ -664,9 +664,10 @@ public class TaaccountServiceImpl extends ServiceImpl<ITaaccountMapper, Taaccoun
         }
         if (org.getUsertype() == 5) {
             //所属会员是否有经纪角色
-            Arearole ar = iArearoleMapper.selectOne(new QueryWrapper<Arearole>().eq("roletype", 7)
+            Arearole ar = iArearoleMapper.selectOne(new QueryWrapper<Arearole>()
+                    .eq("roletype", 7)
                     .eq("userid", org.getMemberuserid()));
-            if (Objects.nonNull(ar)) {
+            if (Objects.isNull(ar)) {
                 return AjaxResult.error(Constants.Error_Code_Design, MessageType.ORGAN_ERROR_CODE_009.getCode(), request.getHeader("Accept-Language"));
             }
         }