| | |
| | | package com.terra.common.service; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import javax.annotation.Resource; |
| | | import org.springframework.data.redis.core.BoundSetOperations; |
| | | import org.springframework.data.redis.core.HashOperations; |
| | | import org.springframework.data.redis.core.RedisTemplate; |
| | |
| | | /** |
| | | * spring redis 工具类 |
| | | * |
| | | * @author ruoyi |
| | | * @author admin |
| | | **/ |
| | | @SuppressWarnings(value = { "unchecked", "rawtypes" }) |
| | | @Component |
| | | public class RedisService |
| | | { |
| | | @Autowired |
| | | @Resource |
| | | public RedisTemplate redisTemplate; |
| | | |
| | | /** |