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

Commit 268bd06e authored by wanglele's avatar wanglele

生成兑换码时间修改

parent 4db01752
......@@ -257,8 +257,9 @@ public class GoblinRedisUtils {
*/
public GoblinNftExSkuVo getSkuTime(String skuId) {
String key = GoblinRedisConst.ACTIVITY_SKU_TIME.concat(skuId);
if (!StringUtil.isEmpty(getRedis().get(key))){
return (GoblinNftExSkuVo)getRedis().get(key);
Object val = getRedis().get(key);
if (!StringUtil.isEmpty(val)){
return (GoblinNftExSkuVo)val;
}
return null;
}
......
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