|
@ -8,7 +8,6 @@ import com.epmet.commons.tools.dto.result.CustomerStaffInfoCacheResult; |
|
|
import com.epmet.commons.tools.enums.EnvEnum; |
|
|
import com.epmet.commons.tools.enums.EnvEnum; |
|
|
import com.epmet.commons.tools.enums.ExternalApiEnum; |
|
|
import com.epmet.commons.tools.enums.ExternalApiEnum; |
|
|
import com.epmet.commons.tools.enums.ExternalServerEnum; |
|
|
import com.epmet.commons.tools.enums.ExternalServerEnum; |
|
|
import com.epmet.commons.tools.exception.EpmetErrorCode; |
|
|
|
|
|
import com.epmet.commons.tools.exception.RenException; |
|
|
import com.epmet.commons.tools.exception.RenException; |
|
|
import com.epmet.commons.tools.redis.common.CustomerStaffRedis; |
|
|
import com.epmet.commons.tools.redis.common.CustomerStaffRedis; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
@ -37,6 +36,12 @@ public class YuShanSysApiService { |
|
|
*/ |
|
|
*/ |
|
|
@Async |
|
|
@Async |
|
|
public void updateUserPoints(String customerId, List<UpdateUserPointsFormDTO> paramList) { |
|
|
public void updateUserPoints(String customerId, List<UpdateUserPointsFormDTO> paramList) { |
|
|
|
|
|
try { |
|
|
|
|
|
Thread.sleep(1000l); |
|
|
|
|
|
} catch (InterruptedException e) { |
|
|
|
|
|
log.error("调用榆山街道发放积分睡眠发生异常,{}",e); |
|
|
|
|
|
e.printStackTrace(); |
|
|
|
|
|
} |
|
|
if (StringUtils.isBlank(customerId) || CollectionUtils.isEmpty(paramList)) { |
|
|
if (StringUtils.isBlank(customerId) || CollectionUtils.isEmpty(paramList)) { |
|
|
throw new RenException("参数错误"); |
|
|
throw new RenException("参数错误"); |
|
|
} |
|
|
} |
|
@ -72,8 +77,7 @@ public class YuShanSysApiService { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} catch (Exception e) { |
|
|
} catch (Exception e) { |
|
|
log.warn("updateUserPoints exception 入参:{}", JSON.toJSONString(formDTO)); |
|
|
log.error("updateUserPoints exception 入参:{},异常:{}", JSON.toJSONString(formDTO),e); |
|
|
throw new RenException(EpmetErrorCode.SERVER_ERROR.getCode(), e.getMessage()); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|