Commit 0c90acee authored by zhangfeng's avatar zhangfeng

兑换记录雪花算法id转字符串类型返回

parent f1e1f168
......@@ -57,6 +57,10 @@ public class MemberUserScoreLogBackVO {
if (StringUtils.isBlank(extParam)) {
return new JSONObject();
}
return JSONUtil.parseObj(extParam);
JSONObject jsonObject = JSONUtil.parseObj(extParam);
if (jsonObject.get("redeemId") != null){
jsonObject.set("redeemId", jsonObject.get("redeemId").toString());
}
return jsonObject;
}
}
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