6
0
Fork 0
master
nishengli 2 years ago
parent 0c3621c477
commit 42dd16eda9
  1. 6
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonOrderNotify.java

@ -28,7 +28,7 @@ public class CarbonOrderNotify {
* 本次订单新增积分
*/
@JSONField(name = "amount")
private double amount;
private String amount;
/**
* 订单时间
*/
@ -77,11 +77,11 @@ public class CarbonOrderNotify {
this.carbon = carbon;
}
public double getAmount() {
public String getAmount() {
return amount;
}
public void setAmount(double amount) {
public void setAmount(String amount) {
this.amount = amount;
}

Loading…
Cancel
Save