| | |
| | | } |
| | | } |
| | | |
| | | public TaoBaoGoodsBrief getTaoBaoGoodsTemp(Long auctionId) { |
| | | public TaoBaoGoodsBrief getTaoBaoGoodsTemp(String auctionId) { |
| | | String key = RedisKeyEnum.getRedisKey(RedisKeyEnum.taobaoGoodsTemp, auctionId + ""); |
| | | String value = getCommonString(key); |
| | | if (!StringUtil.isNullOrEmpty(value)) { |
| | |
| | | * |
| | | * @param auctionId |
| | | */ |
| | | public void deleteTaoBaoGoodsBrief(Long auctionId) { |
| | | public void deleteTaoBaoGoodsBrief(String auctionId) { |
| | | String key = RedisKeyEnum.getRedisKey(RedisKeyEnum.taobaoGoods, auctionId + ""); |
| | | if (Constant.IS_OUTNET) |
| | | removeKey(key); |
| | |
| | | * @param auctionId |
| | | * @return |
| | | */ |
| | | public List<String> getTBImg(Long auctionId) { |
| | | public List<String> getTBImg(String auctionId) { |
| | | String key = RedisKeyEnum.getRedisKey(RedisKeyEnum.taobaoImgs, auctionId + ""); |
| | | String value = ""; |
| | | if (Constant.IS_OUTNET) |