6
0
Fork 0

Merge branch 'release/0.3.19'

master 0.3.19
nishengli 1 year ago
commit 23fe81941f
  1. 2
      pom.xml
  2. 2
      src/main/java/com/tsl3060/open/extend/core/constant/BuildInfo.java
  3. 24
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java
  4. 28
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.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.18</version> <version>0.3.19</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

@ -1,5 +1,5 @@
package com.tsl3060.open.extend.core.constant; package com.tsl3060.open.extend.core.constant;
public final class BuildInfo { public final class BuildInfo {
/** SDK Version */ /** SDK Version */
public static String VERSION="0.3.18"; public static String VERSION="0.3.19";
} }

@ -9,6 +9,9 @@ public class CarbonIntegralNotify {
*/ */
@JSONField(name = "order_no") @JSONField(name = "order_no")
private String orderNo; private String orderNo;
@JSONField(name = "integral_no")
private String integralNo;
/** /**
* 类型id * 类型id
*/ */
@ -27,6 +30,9 @@ public class CarbonIntegralNotify {
* 变动后余额整形单位0.01) * 变动后余额整形单位0.01)
*/ */
private String balance; private String balance;
@JSONField(name = "pre_balance")
private String preBalance;
/** /**
* 发生时间格式yyyy-MM-dd HH:mm:ss * 发生时间格式yyyy-MM-dd HH:mm:ss
*/ */
@ -124,15 +130,33 @@ public class CarbonIntegralNotify {
this.fettle = fettle; this.fettle = fettle;
} }
public String getIntegralNo() {
return integralNo;
}
public void setIntegralNo(String integralNo) {
this.integralNo = integralNo;
}
public String getPreBalance() {
return preBalance;
}
public void setPreBalance(String preBalance) {
this.preBalance = preBalance;
}
@Override @Override
public String toString() { public String toString() {
return "CarbonIntegralNotify{" + return "CarbonIntegralNotify{" +
"openid='" + openid + '\'' + "openid='" + openid + '\'' +
", orderNo='" + orderNo + '\'' + ", orderNo='" + orderNo + '\'' +
", integralNo='" + integralNo + '\'' +
", typeId='" + typeId + '\'' + ", typeId='" + typeId + '\'' +
", typeName='" + typeName + '\'' + ", typeName='" + typeName + '\'' +
", value='" + value + '\'' + ", value='" + value + '\'' +
", balance='" + balance + '\'' + ", balance='" + balance + '\'' +
", preBalance='" + preBalance + '\'' +
", time='" + time + '\'' + ", time='" + time + '\'' +
", fettle='" + fettle + '\'' + ", fettle='" + fettle + '\'' +
", subject='" + subject + '\'' + ", subject='" + subject + '\'' +

@ -17,12 +17,22 @@ public class CarbonValueNotify {
*/ */
private String balance; private String balance;
/**
* 变动前余额(整形单位0.01)
*/
@JSONField(name = "pre_balance")
private String preBalance;
/** /**
* 低碳值订单号 * 低碳值订单号
*/ */
@JSONField(name = "order_no") @JSONField(name = "order_no")
private String orderNo; private String orderNo;
@JSONField(name = "carbon_no")
private String carbonNo;
private String time; private String time;
private String fettle; private String fettle;
@ -116,6 +126,22 @@ public class CarbonValueNotify {
this.fettle = fettle; this.fettle = fettle;
} }
public String getPreBalance() {
return preBalance;
}
public void setPreBalance(String preBalance) {
this.preBalance = preBalance;
}
public String getCarbonNo() {
return carbonNo;
}
public void setCarbonNo(String carbonNo) {
this.carbonNo = carbonNo;
}
@Override @Override
public String toString() { public String toString() {
return "CarbonValueNotify{" + return "CarbonValueNotify{" +
@ -124,7 +150,9 @@ public class CarbonValueNotify {
", typeName='" + typeName + '\'' + ", typeName='" + typeName + '\'' +
", value='" + value + '\'' + ", value='" + value + '\'' +
", balance='" + balance + '\'' + ", balance='" + balance + '\'' +
", preBalance='" + preBalance + '\'' +
", orderNo='" + orderNo + '\'' + ", orderNo='" + orderNo + '\'' +
", carbonNo='" + carbonNo + '\'' +
", time='" + time + '\'' + ", time='" + time + '\'' +
", fettle='" + fettle + '\'' + ", fettle='" + fettle + '\'' +
", subject='" + subject + '\'' + ", subject='" + subject + '\'' +

Loading…
Cancel
Save