6
0
Fork 0
master 0.3.11
nishengli 2 years ago
commit b0e68920df
  1. 2
      pom.xml
  2. 6
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonOrderNotify.java

@ -6,7 +6,7 @@
<groupId>com.tsl3060.open.extend</groupId> <groupId>com.tsl3060.open.extend</groupId>
<artifactId>tsl-open-sdk-java-wanshun</artifactId> <artifactId>tsl-open-sdk-java-wanshun</artifactId>
<version>0.3.10</version> <version>0.3.11</version>
<properties> <properties>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>

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

Loading…
Cancel
Save