parent
1cd1b79b2b
commit
8cdf7802a8
@ -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; |
||||||
|
} |
||||||
|
} |
@ -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…
Reference in new issue