记得上下班打卡 | git大法好,push需谨慎

Commit 52aedda9 authored by anjiabin's avatar anjiabin

提交chime社交相关

parent 777f441b
......@@ -37,7 +37,7 @@ public class RedisDataUtil {
log.info("isPassedByPerformanceId allowPerIds:{}",allowPerIds);
if(StringUtil.isNotNull(allowPerIds)){
String perIds = (String)allowPerIds;
List<String> perIdsList = Arrays.asList(perIds.split("|"));
List<String> perIdsList = Arrays.asList(perIds.split(","));
if(perIdsList.contains(performanceId)){
isPass = true;
}
......@@ -51,7 +51,7 @@ public class RedisDataUtil {
log.info("isPassedByPerformanceId notAllowPerIds:{}",notAllowPerIds);
if(StringUtil.isNotNull(notAllowPerIds)){
String notPerIds = (String)notAllowPerIds;
List<String> notPerIdsList = Arrays.asList(notPerIds.split("|"));
List<String> notPerIdsList = Arrays.asList(notPerIds.split(","));
if(notPerIdsList.contains(performanceId)){
isPass = false;
}
......@@ -71,7 +71,7 @@ public class RedisDataUtil {
log.info("isPassedByCityName allowCityNameIds:{}",allowCityNameIds);
if(StringUtil.isNotNull(allowCityNameIds)){
String perIds = (String)allowCityNameIds;
List<String> perIdsList = Arrays.asList(perIds.split("|"));
List<String> perIdsList = Arrays.asList(perIds.split(","));
if(perIdsList.contains(cityName)){
isPass = true;
}
......@@ -85,7 +85,7 @@ public class RedisDataUtil {
log.info("isPassedByCityName notAllowCityNameIds:{}",notAllowCityNameIds);
if(StringUtil.isNotNull(notAllowCityNameIds)){
String notPerIds = (String)notAllowCityNameIds;
List<String> notPerIdsList = Arrays.asList(notPerIds.split("|"));
List<String> notPerIdsList = Arrays.asList(notPerIds.split(","));
if(notPerIdsList.contains(cityName)){
isPass = false;
}
......
package com.liquidnet.service.chime.test;
import com.liquidnet.service.chime.utils.RedisDataUtil;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0
* @Description: TODO
* @class: TestRedisUtils
* @Package com.liquidnet.service.chime.test
* @Copyright: LightNet @ Copyright (c) 2021
* @date 2021/9/22 15:44
*/
@Slf4j
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class TestRedisUtils {
@Autowired
private RedisDataUtil redisDataUtil;
@Test
public void test(){
boolean isAllow = redisDataUtil.isPassedByPerformanceId("123");
log.info("isAllow:{}",isAllow);
boolean isCityAllow = redisDataUtil.isPassedByCityName("123");
log.info("isCityAllow:{}",isCityAllow);
}
}
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