当前位置:   article > 正文

Redis--17--RedisUtil工具类

Redis--17--RedisUtil工具类

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


RedisUtil

依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

  • 1
  • 2
  • 3
  • 4
  • 5

RedisConfig

  • 添加配置文件,使用 String 序列化、FastJsonRedisSerializer序列化

import com.alibaba.fastjson.support.spring.FastJsonRedisSerializer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.StringRedisSerializer;

/**
 * redis配置类
 */
@Configuration
public class RedisConfig {

    /**
     * 重写Redis序列化方式,使用Json方式:
     * 当我们的数据存储到Redis的时候,我们的键(key)和值(value)都是通过Spring提供的Serializer序列化到数据库的。RedisTemplate默认使用的是JdkSerializationRedisSerializer,StringRedisTemplate默认使用的是StringRedisSerializer。
     * Spring Data JPA为我们提供了下面的Serializer:
     * GenericToStringSerializer、Jackson2JsonRedisSerializer、JacksonJsonRedisSerializer、JdkSerializationRedisSerializer、OxmSerializer、StringRedisSerializer。
     * 在此我们将自己配置RedisTemplate并定义Serializer。
     *
     * @param redisConnectionFactory
     * @return
     */
    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(redisConnectionFactory);

        FastJsonRedisSerializer<Object> fastJsonRedisSerializer = new FastJsonRedisSerializer<>(Object.class);

        // 设置值(value)的序列化采用FastJsonRedisSerializer。
        redisTemplate.setValueSerializer(fastJsonRedisSerializer);
        redisTemplate.setHashValueSerializer(fastJsonRedisSerializer);
        // 设置键(key)的序列化采用StringRedisSerializer。
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());

        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

RedisUtil


import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.data.redis.core.RedisTemplate;

import java.text.MessageFormat;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;

/**
 * redis工具类
 *
 * @author chenws
 * @date 2019/12/06 11:36:52
 */
@Slf4j
public class RedisUtil {

    private final RedisTemplate<String, Object> redisTemplate;

    public RedisUtil(RedisTemplate<String, Object> redisTemplate) {
        this.redisTemplate = redisTemplate;
    }

    /**
     * 为指定key设置过期时间
     *
     * @param key     键
     * @param timeout 时间
     * @param unit    时间单位
     * @return 成功返回true
     */
    public Boolean expire(String key, long timeout, TimeUnit unit) {
        if (timeout > 0) {
            return redisTemplate.expire(key, timeout, unit);
        }
        return Boolean.FALSE;
    }

    /**
     * key 不存在的时候才set
     *
     * @param key     key
     * @param value   value
     * @param timeout 过期时间
     * @param unit    时间单位
     * @return 设置成功返回true,否则false
     */
    public Boolean setIfAbsent(String key, Object value, long timeout, TimeUnit unit) {
        return redisTemplate.opsForValue().setIfAbsent(key, value, timeout, unit);
    }

    /**
     * key 不存在的时候才set
     *
     * @param key   key
     * @param value value
     * @return 插入成功返回true,否则false
     */
    public Boolean setIfAbsent(String key, Object value) {
        return redisTemplate.opsForValue().setIfAbsent(key, value);
    }

    /**
     * key 存在的时候才set
     *
     * @param key     key
     * @param value   value
     * @param timeout 过期时间
     * @param unit    时间单位
     * @return 设置成功返回true,否则false
     */
    public Boolean setIfPresent(String key, Object value, long timeout, TimeUnit unit) {
        return redisTemplate.opsForValue().setIfPresent(key, value, timeout, unit);
    }

    /**
     * key 存在的时候才set
     *
     * @param key   key
     * @param value value
     * @return 插入成功返回true,否则false
     */
    public Boolean setIfPresent(String key, Object value) {
        return redisTemplate.opsForValue().setIfPresent(key, value);
    }

    /**
     * 返回为key的记录数
     *
     * @param key key
     * @return 条数
     */
    public Long size(String key) {
        return redisTemplate.opsForValue().size(key);
    }

    /**
     * 对指定key进行递减1
     *
     * @param key 键
     * @return 如果不存在key,返回-1,否则返回减后值
     */
    public Long decrement(String key) {
        return redisTemplate.opsForValue().decrement(key);
    }

    /**
     * 判断指定key是否存在
     *
     * @param key 键
     * @return true:存在,false:不存在
     */
    public Boolean hasKey(String key) {
        if (StringUtils.isNotBlank(key)) {
            return redisTemplate.hasKey(key);
        } else {
            return Boolean.FALSE;
        }
    }

    /**
     * 获取超时时间
     *
     * @param key
     * @return
     */
    public Long getExpire(String key) {
        return redisTemplate.opsForValue().getOperations().getExpire(key);
    }

    /**
     * 删除多个key
     *
     * @param keys key集合
     */
    public void delete(Collection<String> keys) {
        redisTemplate.delete(keys);
    }

    /**
     * 删除指定key
     *
     * @param key key
     * @return true 删除成功
     */
    public Boolean delete(String key) {
        return redisTemplate.delete(key);
    }

    /**
     * 获取指定key的值
     *
     * @param key 键
     * @return 值
     */
    public Object get(String key) {
        return key == null ? null : redisTemplate.opsForValue().get(key);
    }

    /**
     * 设置key-value
     *
     * @param key   键
     * @param value 值
     */
    public void set(String key, Object value) {
        redisTemplate.opsForValue().set(key, value);
    }

    /**
     * 设置指定key的值并设置其过期时间
     *
     * @param key     键
     * @param value   值
     * @param timeout 时间:小于等于0将设置为无限期
     */
    public void set(String key, Object value, long timeout, TimeUnit unit) {
        if (timeout > 0) {
            redisTemplate.opsForValue().set(key, value, timeout, unit);
        } else {
            set(key, value);
        }
    }

    /**
     * 对指定key对应的值进行+1
     *
     * @param key 键
     * @return Long 递增后的value值
     */
    public Long increment(String key) {
        return redisTemplate.opsForValue().increment(key);
    }

    /**
     * 对指定key对应的值进行递增
     *
     * @param key   键
     * @param delta 要增加的值(大于0)
     * @return Long 递增后的value值
     */
    public Long increment(String key, long delta) {
        if (delta < 0) {
            throw new AppException(RedisError.DELTA_ERROR);
        }
        return redisTemplate.opsForValue().increment(key, delta);
    }

    /**
     * 获取存储在哈希表中指定字段的值
     *
     * @param key     must not be {@literal null}.
     * @param hashKey must not be {@literal null}.
     * @return 值
     */
    public Object hGet(String key, Object hashKey) {
        return redisTemplate.opsForHash().get(key, hashKey);
    }

    /**
     * 获取指定key对应的所有键值对
     *
     * @param key 键
     * @return 对应的所有键值对
     */
    public Map<Object, Object> entries(String key) {
        return redisTemplate.opsForHash().entries(key);
    }

    /**
     * 将Map存放到哈希表指定key中
     *
     * @param key 键
     * @param map 对应多个键值
     */
    public void hmSet(String key, Map<Object, Object> map) {
        try {
            redisTemplate.opsForHash().putAll(key, map);
        } catch (Exception e) {
            log.error("将Map存放到哈希表指定key中异常" + e);
        }
    }

    /**
     * 将哈希表指定key中的字段field值设为value,如果不存在则创建
     *
     * @param key     键
     * @param hashKey 字段
     * @param value   值
     */
    public void hSet(String key, Object hashKey, Object value) {
        try {
            redisTemplate.opsForHash().put(key, hashKey, value);
        } catch (Exception e) {
            log.error("将哈希表指定key中的字段field值设为value异常" + e);
        }
    }

    /**
     * 删除一个或多个哈希表字段
     *
     * @param key      键,不能为null
     * @param hashKeys 字段:可以是一个或多个,不能为null
     */
    public void hDel(String key, Object... hashKeys) {
        redisTemplate.opsForHash().delete(key, hashKeys);
    }

    /**
     * 判断哈希表中是否存在指定key
     *
     * @param key     键,不能为null
     * @param hashKey 字段,不能为null
     * @return true:存在,false:不存在
     */
    public Boolean hHasKey(String key, Object hashKey) {
        return redisTemplate.opsForHash().hasKey(key, hashKey);
    }


    /**
     * 根据key获取所有的值
     *
     * @param key 键
     * @return 所有的值
     */
    public Set<Object> sGet(String key) {
        try {
            return redisTemplate.opsForSet().members(key);
        } catch (Exception e) {
            log.error("根据key获取所有的值异常" + e);
            return null;
        }
    }

    /**
     * 从key中查询指定的value是否存在
     *
     * @param key   键
     * @param value 值
     * @return true:存在,false:不存在
     */
    public Boolean sHasKey(String key, Object value) {
        try {
            return redisTemplate.opsForSet().isMember(key, value);
        } catch (Exception e) {
            log.error("从key中查询指定的value是否存在异常" + e);
            return Boolean.FALSE;
        }
    }

    /**
     * 向指定集合key中添加一或多个value
     *
     * @param key    键
     * @param values 值,可以是一个或多个
     * @return 成功个数
     */
    public Long sAdd(String key, Object... values) {
        try {
            return redisTemplate.opsForSet().add(key, values);
        } catch (Exception e) {
            log.error("向指定集合key中添加一或多个value异常" + e);
            return 0L;
        }
    }

    /**
     * 获取指定key的长度
     *
     * @param key 键
     * @return 结果
     */
    public Long sSize(String key) {
        try {
            return redisTemplate.opsForSet().size(key);
        } catch (Exception e) {
            log.error("获取指定key的长度异常" + e);
            return 0L;
        }
    }

    /**
     * 移除指定key中的一个或多个value
     *
     * @param key    键
     * @param values 值,可以是一个或多个
     * @return 移除的个数
     */
    public Long sRemove(String key, Object... values) {
        try {
            return redisTemplate.opsForSet().remove(key, values);
        } catch (Exception e) {
            log.error("移除指定key中的一个或多个value异常" + e);
            return 0L;
        }
    }

    /**
     * 判断set中是否包含该元素
     **/
    public Boolean sIsMember(String key, Object member) {
        try {
            return redisTemplate.opsForSet().isMember(key, member);
        } catch (Exception e) {
            log.error("判断set中是否包含该元素异常" + e);
            return false;
        }
    }

    /**
     * 获取列表key中指定范围内的元素
     *
     * @param key   键
     * @param start 开始
     * @param end   结束
     * @return 结果
     */
    public List<Object> lRange(String key, long start, long end) {
        try {
            return redisTemplate.opsForList().range(key, start, end);
        } catch (Exception e) {
            log.error("获取列表key中指定范围内的元素异常" + e);
            return null;
        }
    }

    /**
     * 获取指定列表key的长度
     *
     * @param key 键
     * @return 长度
     */
    public Long lSize(String key) {
        try {
            return redisTemplate.opsForList().size(key);
        } catch (Exception e) {
            log.error("获取指定列表key的长度异常" + e);
            return 0L;
        }
    }

    /**
     * 通过索引获取指定key中的值
     *
     * @param key   键
     * @param index 索引
     * @return 数据
     */
    public Object lIndex(String key, long index) {
        try {
            return redisTemplate.opsForList().index(key, index);
        } catch (Exception e) {
            log.error("通过索引获取指定key中的值异常" + e);
            return null;
        }
    }

    /**
     * 给指定key设置值value
     *
     * @param key   键
     * @param value 值
     */
    public void lRightPush(String key, Object value) {
        try {
            redisTemplate.opsForList().rightPush(key, value);
        } catch (Exception e) {
            log.error("给指定key设置值value异常" + e);
        }
    }

    /**
     * 向指定key中添加一个List类型的值
     *
     * @param key   键
     * @param value 值
     */
    public void lRightPushAll(String key, List<Object> value) {
        try {
            redisTemplate.opsForList().rightPushAll(key, value);
        } catch (Exception e) {
            log.error("向指定key中添加一个List类型的值异常" + e);
        }
    }

    /**
     * 向指定key中添加一个List类型的值
     *
     * @param key   键
     * @param value 值
     */
    public void lLeftPushAll(String key, List<Object> value) {
        try {
            redisTemplate.opsForList().leftPushAll(key, value);
        } catch (Exception e) {
            log.error("向指定key中添加一个List类型的值异常" + e);
        }
    }

    /**
     * 通过索引修改指定key中的表元素的值
     *
     * @param key   键
     * @param index 索引
     * @param value 值
     */
    public void lSaveByIndex(String key, long index, Object value) {
        try {
            redisTemplate.opsForList().set(key, index, value);
        } catch (Exception e) {
            log.error("通过索引修改指定key中的表元素的值异常" + e);
        }
    }

    /**
     * 从指定key中移除N个列表元素
     *
     * @param key   键
     * @param count 要移除的元素个数
     * @param value 值
     * @return 移除元素的个数
     */
    public Long lRemove(String key, long count, Object value) {
        try {
            return redisTemplate.opsForList().remove(key, count, value);
        } catch (Exception e) {
            log.error("从指定key中移除N个列表元素异常" + e);
            return 0L;
        }
    }

    /**
     * 弹出元素
     *
     * @param key
     * @return
     */
    public Object leftPop(String key) {
        try {
            return redisTemplate.opsForList().leftPop(key);
        } catch (Exception e) {
            log.error("列表头部弹出" + e);
            return null;
        }
    }

    /**
     * 获取所有键
     *
     * @param pattern 正则
     * @return key集合
     */
    public Set<String> getKeys(String pattern) {
        return redisTemplate.keys(pattern);
    }

    /**
     * 获取redis真正的key
     *
     * @param key     模式
     * @param objects 参数
     * @return String key
     */
    public String getKey(String key, Object... objects) {
        return MessageFormat.format(key, objects);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532

案例

分布式锁 应用

/**
 * redis 常量
 */
public interface RedisConstant {

    String WHITE_LIST_IMPORT_ING = "whitelist:import:ing";
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • redis异步锁限制同时只能导入一个文件
/**
     * 执行导入
     *
     * @param rowList
     * @param appId
     * @param fileName
     */
    private void doImport(List<String> rowList, String appId, String fileName) {
        // 初始化白名单列表内容
        WhiteListModel whiteListModel = this.initWhiteList(appId, fileName);

        // redis异步锁限制同时只能导入一个文件
        if (!redisUtil.setIfAbsent(RedisConstant.WHITE_LIST_IMPORT_ING, fileName, 8, TimeUnit.HOURS)) {
            throw new AppException(WhiteListError.TASK_REPETITION);
        }

        // 初始化导入进度
        WhiteListImportProgressVO progressVO = new WhiteListImportProgressVO();
        progressVO.start(whiteListModel.getId());
        saveImportProgress(progressVO);
        progressVO.setTotalRows(rowList.size());
        if (rowList.size() == 0) {
            progressVO.incrProcessedRows(0);
            progressVO.incrSuccessCount(0);
            progressVO.finish();
            saveImportProgress(progressVO);
            // 释放redis锁
            redisUtil.delete(RedisConstant.WHITE_LIST_IMPORT_ING);
            return;
        }
        // 忽略超出最大限制外的数据
        List newRowList;
        if (rowList.size() > maxSize) {
            newRowList = rowList.subList(0, maxSize);
        } else {
            newRowList = rowList;
        }

        singleThreadExecutor.execute(() -> {
            long start = System.currentTimeMillis();
            try {
                List<List> dataGroupList = ListUtils.partition(newRowList, dataGroupSize);
                for (List group : dataGroupList) {
                    // 导入
                    Integer successCount = this.importData(group, whiteListModel.getId(), whiteListModel.getTargetTableName());
                    progressVO.incrProcessedRows(group.size());
                    progressVO.incrSuccessCount(successCount);
                    saveImportProgress(progressVO);
                }
                progressVO.finish();
                saveImportProgress(progressVO);
            } catch (Exception e) {
                progressVO.error();
                saveImportProgress(progressVO);
                log.error(e.getMessage(), e);
            } finally {
                // 释放redis锁
                redisUtil.delete(RedisConstant.WHITE_LIST_IMPORT_ING);
            }

            long end = System.currentTimeMillis();
            log.info("本次导入 appId:{},批次号:{},花费时间:{} ms", appId, whiteListModel.getWhiteListSno(), (end - start));
        });
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/449473
推荐阅读
相关标签
  

闽ICP备14008679号