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

Commit 8da3cb5e authored by jiangxiulong's avatar jiangxiulong

增减积分用队列

parent 55401ef3
...@@ -210,7 +210,7 @@ public class GoblinOrderUtils { ...@@ -210,7 +210,7 @@ public class GoblinOrderUtils {
} }
public void integral(String uid, BigDecimal price, String content, int type) { public void integral(String uid, BigDecimal price, String content, int type) {
if (price.compareTo(BigDecimal.ZERO) > 0) { if (price.intValue() > 0) {
GoblinQueueBizIntegralDto goblinQueueBizIntegralDto = GoblinQueueBizIntegralDto.getNew(); GoblinQueueBizIntegralDto goblinQueueBizIntegralDto = GoblinQueueBizIntegralDto.getNew();
goblinQueueBizIntegralDto.setUid(uid); goblinQueueBizIntegralDto.setUid(uid);
goblinQueueBizIntegralDto.setScore(price); goblinQueueBizIntegralDto.setScore(price);
......
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