6
0
Fork 0
master
nishengli 1 year ago
parent 1cd1b79b2b
commit 8cdf7802a8
  1. 2
      pom.xml
  2. 14
      src/main/java/com/tsl3060/open/extend/core/INotifyListener.java
  3. 107
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java
  4. 20
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotifyAnswer.java
  5. 1
      src/main/java/com/tsl3060/open/extend/core/router/notify/CarbonIntegralNotifyRouter.java
  6. 27
      src/main/java/com/tsl3060/open/extend/core/router/notify/CarbonValueNotifyRouter.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.16</version> <version>0.3.17</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

@ -1,9 +1,6 @@
package com.tsl3060.open.extend.core; package com.tsl3060.open.extend.core;
import com.tsl3060.open.extend.core.notify.CarbonIntegralNotify; import com.tsl3060.open.extend.core.notify.*;
import com.tsl3060.open.extend.core.notify.CarbonIntegralNotifyAnswer;
import com.tsl3060.open.extend.core.notify.CarbonOrderNotify;
import com.tsl3060.open.extend.core.notify.CarbonOrderNotifyAnswer;
public interface INotifyListener { public interface INotifyListener {
/** /**
@ -11,9 +8,18 @@ public interface INotifyListener {
* *
* @param notify * @param notify
* @return * @return
* @deprecated 后续不再通过订单通知低碳积分变更请使用低碳积分变更通知接口
*/ */
@Deprecated
CarbonOrderNotifyAnswer carbon(CarbonOrderNotify notify); CarbonOrderNotifyAnswer carbon(CarbonOrderNotify notify);
/**
* 低碳积分变更通知
*
* @param notify 变更通知
* @return 变更响应
*/
CarbonValueNotifyAnswer carbonUpdate(CarbonValueNotify notify);
/** /**
* 绿色值变动通知 * 绿色值变动通知

@ -0,0 +1,107 @@
package com.tsl3060.open.extend.core.notify;
import com.alibaba.fastjson2.annotation.JSONField;
public class CarbonValueNotify {
private String openid;
@JSONField(name = "type_id")
private String typeId;
@JSONField(name = "type_name")
private String typeName;
/**
* 低碳值变动数量(整形单位0.01)
*/
private String value;
/**
* 变动后余额整形单位0.01)
*/
private String balance;
/**
* 低碳值订单号
*/
@JSONField(name = "order_no")
private String orderNo;
private String time;
private String fettle;
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getTypeId() {
return typeId;
}
public void setTypeId(String typeId) {
this.typeId = typeId;
}
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getBalance() {
return balance;
}
public void setBalance(String balance) {
this.balance = balance;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getFettle() {
return fettle;
}
public void setFettle(String fettle) {
this.fettle = fettle;
}
@Override
public String toString() {
return "CarbonValueNotify{" +
"openid='" + openid + '\'' +
", typeId='" + typeId + '\'' +
", typeName='" + typeName + '\'' +
", value='" + value + '\'' +
", balance='" + balance + '\'' +
", orderNo='" + orderNo + '\'' +
", time='" + time + '\'' +
", fettle='" + fettle + '\'' +
'}';
}
}

@ -0,0 +1,20 @@
package com.tsl3060.open.extend.core.notify;
public class CarbonValueNotifyAnswer implements IAnswer{
public CarbonValueNotifyAnswer(boolean answer) {
this.answer = answer;
}
public CarbonValueNotifyAnswer() {
}
private boolean answer;
public boolean isAnswer() {
return answer;
}
public void setAnswer(boolean answer) {
this.answer = answer;
}
}

@ -1,7 +1,6 @@
package com.tsl3060.open.extend.core.router.notify; package com.tsl3060.open.extend.core.router.notify;
import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.tsl3060.open.extend.core.INotifyListener; import com.tsl3060.open.extend.core.INotifyListener;
import com.tsl3060.open.extend.core.NotifyRequest; import com.tsl3060.open.extend.core.NotifyRequest;
import com.tsl3060.open.extend.core.notify.CarbonIntegralNotify; import com.tsl3060.open.extend.core.notify.CarbonIntegralNotify;

@ -0,0 +1,27 @@
package com.tsl3060.open.extend.core.router.notify;
import com.alibaba.fastjson2.JSON;
import com.tsl3060.open.extend.core.INotifyListener;
import com.tsl3060.open.extend.core.NotifyRequest;
import com.tsl3060.open.extend.core.notify.CarbonValueNotify;
import com.tsl3060.open.extend.core.notify.IAnswer;
import com.tsl3060.open.extend.core.router.INotifyRouter;
public class CarbonValueNotifyRouter implements INotifyRouter {
private final INotifyListener notifyListener;
public CarbonValueNotifyRouter(INotifyListener notifyListener) {
this.notifyListener = notifyListener;
}
@Override
public String path() {
return "/v1/wanshun/notify/carbonupdate";
}
@Override
public IAnswer makeBody(NotifyRequest notifyRequest) throws Exception {
CarbonValueNotify carbonValueNotify = JSON.to(CarbonValueNotify.class, notifyRequest.getPayload());
return this.notifyListener.carbonUpdate(carbonValueNotify);
}
}
Loading…
Cancel
Save