Compare commits
58 Commits
Author | SHA1 | Date |
---|---|---|
|
4cc9dd33ba | 1 year ago |
|
3263c2d3a0 | 1 year ago |
|
b273936c71 | 1 year ago |
|
23fe81941f | 1 year ago |
|
678fadda96 | 1 year ago |
|
e4ca6e709f | 1 year ago |
|
85812ac4af | 1 year ago |
|
7c20ce3be2 | 1 year ago |
|
e830282c1a | 1 year ago |
|
644105f15e | 1 year ago |
|
81318b2351 | 1 year ago |
|
9965e99b32 | 1 year ago |
|
8a64d7037d | 1 year ago |
|
8cdf7802a8 | 1 year ago |
|
1cd1b79b2b | 1 year ago |
|
c45acaeea7 | 1 year ago |
|
2e3defd343 | 1 year ago |
|
ba98cf2353 | 1 year ago |
|
cb4fdc88ae | 1 year ago |
|
48dfdbce1f | 1 year ago |
|
24c7efdbf9 | 1 year ago |
|
977d014ae8 | 1 year ago |
|
5771089bf4 | 1 year ago |
|
53014e3790 | 1 year ago |
|
8b95797e8c | 1 year ago |
|
5cbb5ed85a | 1 year ago |
|
8766f0ee1e | 1 year ago |
|
4f0be77c2d | 1 year ago |
|
c53e57b2f8 | 1 year ago |
|
00975298cc | 1 year ago |
|
5de12f6bba | 1 year ago |
|
29ee3f7df2 | 1 year ago |
|
25af2e0b57 | 1 year ago |
|
fece48abe4 | 1 year ago |
|
83e1c9851c | 1 year ago |
|
91631fab98 | 1 year ago |
|
5891b611f8 | 1 year ago |
|
9216271bb9 | 1 year ago |
|
ca33779389 | 2 years ago |
|
19a9419d0b | 2 years ago |
|
929b8f0a67 | 2 years ago |
|
42dd16eda9 | 2 years ago |
|
4419edf7f9 | 2 years ago |
|
0c3621c477 | 2 years ago |
|
eff86f41aa | 2 years ago |
|
51732e9943 | 2 years ago |
|
0529581390 | 2 years ago |
|
f96d3ee5fe | 2 years ago |
|
7056f911f7 | 2 years ago |
|
361f249ae2 | 2 years ago |
|
4f973880c5 | 2 years ago |
|
baa3afceaf | 2 years ago |
|
4201b945c2 | 2 years ago |
|
97a31c2228 | 2 years ago |
|
9e6c91e5b3 | 2 years ago |
|
7ea6ae75d0 | 2 years ago |
|
8d94fae1c4 | 2 years ago |
|
4c65e9e271 | 2 years ago |
@ -0,0 +1,5 @@ |
||||
package com.tsl3060.open.extend.core.constant; |
||||
public final class BuildInfo { |
||||
/** SDK Version */ |
||||
public static String VERSION="0.3.20"; |
||||
} |
@ -0,0 +1,18 @@ |
||||
package com.tsl3060.open.extend.core.constant; |
||||
|
||||
public class TypeDefine { |
||||
/** |
||||
* 低碳值 |
||||
*/ |
||||
public static final String TYPE_CARBON = "carbon"; |
||||
|
||||
/** |
||||
* 绿色值 |
||||
*/ |
||||
public static final String TYPE_INTEGRAL = "integral"; |
||||
|
||||
/** |
||||
* 科目 |
||||
*/ |
||||
public static final String TYPE_SUBJECT = "subject"; |
||||
} |
@ -0,0 +1,167 @@ |
||||
package com.tsl3060.open.extend.core.notify; |
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField; |
||||
|
||||
public class CarbonIntegralNotify { |
||||
private String openid; |
||||
/** |
||||
* 绿色积分订单号 |
||||
*/ |
||||
@JSONField(name = "order_no") |
||||
private String orderNo; |
||||
|
||||
@JSONField(name = "serial_no") |
||||
private String serialNo; |
||||
/** |
||||
* 类型id |
||||
*/ |
||||
@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 = "pre_balance") |
||||
private String preBalance; |
||||
/** |
||||
* 发生时间,格式:yyyy-MM-dd HH:mm:ss |
||||
*/ |
||||
private String time; |
||||
/** |
||||
* 备注信息 |
||||
*/ |
||||
private String fettle; |
||||
/** |
||||
* 变更科目 |
||||
*/ |
||||
private String subject; |
||||
/** |
||||
* 说明 |
||||
*/ |
||||
private String description; |
||||
|
||||
public String getSubject() { |
||||
return subject; |
||||
} |
||||
|
||||
public void setSubject(String subject) { |
||||
this.subject = subject; |
||||
} |
||||
|
||||
public String getDescription() { |
||||
return description; |
||||
} |
||||
|
||||
public void setDescription(String description) { |
||||
this.description = description; |
||||
} |
||||
|
||||
public String getOpenid() { |
||||
return openid; |
||||
} |
||||
|
||||
public void setOpenid(String openid) { |
||||
this.openid = openid; |
||||
} |
||||
|
||||
public String getOrderNo() { |
||||
return orderNo; |
||||
} |
||||
|
||||
public void setOrderNo(String orderNo) { |
||||
this.orderNo = orderNo; |
||||
} |
||||
|
||||
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 getTime() { |
||||
return time; |
||||
} |
||||
|
||||
public void setTime(String time) { |
||||
this.time = time; |
||||
} |
||||
|
||||
public String getFettle() { |
||||
return fettle; |
||||
} |
||||
|
||||
public void setFettle(String fettle) { |
||||
this.fettle = fettle; |
||||
} |
||||
|
||||
|
||||
public String getSerialNo() { |
||||
return serialNo; |
||||
} |
||||
|
||||
public void setSerialNo(String serialNo) { |
||||
this.serialNo = serialNo; |
||||
} |
||||
|
||||
public String getPreBalance() { |
||||
return preBalance; |
||||
} |
||||
|
||||
public void setPreBalance(String preBalance) { |
||||
this.preBalance = preBalance; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return "CarbonIntegralNotify{" + |
||||
"openid='" + openid + '\'' + |
||||
", orderNo='" + orderNo + '\'' + |
||||
", serialNo='" + serialNo + '\'' + |
||||
", typeId='" + typeId + '\'' + |
||||
", typeName='" + typeName + '\'' + |
||||
", value='" + value + '\'' + |
||||
", balance='" + balance + '\'' + |
||||
", preBalance='" + preBalance + '\'' + |
||||
", time='" + time + '\'' + |
||||
", fettle='" + fettle + '\'' + |
||||
", subject='" + subject + '\'' + |
||||
", description='" + description + '\'' + |
||||
'}'; |
||||
} |
||||
} |
@ -0,0 +1,28 @@ |
||||
package com.tsl3060.open.extend.core.notify; |
||||
|
||||
|
||||
/** |
||||
* 绿色积分通知应答 |
||||
*/ |
||||
public class CarbonIntegralNotifyAnswer implements IAnswer { |
||||
|
||||
/** |
||||
* 是否应答成功 |
||||
*/ |
||||
private boolean answer; |
||||
|
||||
public CarbonIntegralNotifyAnswer(boolean answer) { |
||||
this.answer = answer; |
||||
} |
||||
|
||||
public CarbonIntegralNotifyAnswer() { |
||||
} |
||||
|
||||
public boolean isAnswer() { |
||||
return answer; |
||||
} |
||||
|
||||
public void setAnswer(boolean answer) { |
||||
this.answer = answer; |
||||
} |
||||
} |
@ -0,0 +1,162 @@ |
||||
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; |
||||
|
||||
|
||||
/** |
||||
* 变动前余额(整形,单位0.01) |
||||
*/ |
||||
@JSONField(name = "pre_balance") |
||||
private String preBalance; |
||||
|
||||
/** |
||||
* 低碳值订单号 |
||||
*/ |
||||
@JSONField(name = "order_no") |
||||
private String orderNo; |
||||
|
||||
@JSONField(name = "serial_no") |
||||
private String serialNo; |
||||
|
||||
private String time; |
||||
|
||||
private String fettle; |
||||
|
||||
/** |
||||
* 变更科目 |
||||
*/ |
||||
private String subject; |
||||
/** |
||||
* 说明 |
||||
*/ |
||||
private String description; |
||||
|
||||
public String getSubject() { |
||||
return subject; |
||||
} |
||||
|
||||
public void setSubject(String subject) { |
||||
this.subject = subject; |
||||
} |
||||
|
||||
public String getDescription() { |
||||
return description; |
||||
} |
||||
|
||||
public void setDescription(String description) { |
||||
this.description = description; |
||||
} |
||||
|
||||
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; |
||||
} |
||||
|
||||
public String getPreBalance() { |
||||
return preBalance; |
||||
} |
||||
|
||||
public void setPreBalance(String preBalance) { |
||||
this.preBalance = preBalance; |
||||
} |
||||
|
||||
public String getSerialNo() { |
||||
return serialNo; |
||||
} |
||||
|
||||
public void setSerialNo(String serialNo) { |
||||
this.serialNo = serialNo; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return "CarbonValueNotify{" + |
||||
"openid='" + openid + '\'' + |
||||
", typeId='" + typeId + '\'' + |
||||
", typeName='" + typeName + '\'' + |
||||
", value='" + value + '\'' + |
||||
", balance='" + balance + '\'' + |
||||
", preBalance='" + preBalance + '\'' + |
||||
", orderNo='" + orderNo + '\'' + |
||||
", carbonNo='" + serialNo + '\'' + |
||||
", time='" + time + '\'' + |
||||
", fettle='" + fettle + '\'' + |
||||
", subject='" + subject + '\'' + |
||||
", description='" + description + '\'' + |
||||
'}'; |
||||
} |
||||
} |
@ -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,22 @@ |
||||
package com.tsl3060.open.extend.core.payload; |
||||
|
||||
import com.tsl3060.open.extend.core.IApiRequest; |
||||
|
||||
public class DicQueryPayload extends RequestPayload implements IApiRequest { |
||||
@Override |
||||
public String path() { |
||||
return "/v1/wanshun/dic/query"; |
||||
} |
||||
|
||||
|
||||
private String type; |
||||
|
||||
public String getType() { |
||||
return type; |
||||
} |
||||
|
||||
public void setType(String type) { |
||||
this.type = type; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,41 @@ |
||||
package com.tsl3060.open.extend.core.payload; |
||||
|
||||
import com.tsl3060.open.extend.core.IApiRequest; |
||||
|
||||
import java.util.List; |
||||
|
||||
public class UserRelationPayload extends RequestPayload implements IApiRequest { |
||||
@Override |
||||
public String path() { |
||||
return "/v1/wanshun/user/relation"; |
||||
} |
||||
|
||||
private String openid; |
||||
private String parentId; |
||||
private List<String> children; |
||||
|
||||
|
||||
public String getOpenid() { |
||||
return openid; |
||||
} |
||||
|
||||
public void setOpenid(String openid) { |
||||
this.openid = openid; |
||||
} |
||||
|
||||
public String getParentId() { |
||||
return parentId; |
||||
} |
||||
|
||||
public void setParentId(String parentId) { |
||||
this.parentId = parentId; |
||||
} |
||||
|
||||
public List<String> getChildren() { |
||||
return children; |
||||
} |
||||
|
||||
public void setChildren(List<String> children) { |
||||
this.children = children; |
||||
} |
||||
} |
@ -0,0 +1,47 @@ |
||||
package com.tsl3060.open.extend.core.response; |
||||
|
||||
import java.util.List; |
||||
|
||||
public class DicQueryResponse { |
||||
|
||||
private boolean result; |
||||
private List<Dic> dic; |
||||
|
||||
public boolean isResult() { |
||||
return result; |
||||
} |
||||
|
||||
public void setResult(boolean result) { |
||||
this.result = result; |
||||
} |
||||
|
||||
public List<Dic> getDic() { |
||||
return dic; |
||||
} |
||||
|
||||
public void setDic(List<Dic> dic) { |
||||
this.dic = dic; |
||||
} |
||||
|
||||
public static class Dic { |
||||
private String key; |
||||
private String name; |
||||
|
||||
|
||||
public String getKey() { |
||||
return key; |
||||
} |
||||
|
||||
public void setKey(String key) { |
||||
this.key = key; |
||||
} |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
package com.tsl3060.open.extend.core.response; |
||||
|
||||
public class UserRelationResponse { |
||||
private boolean result; |
||||
|
||||
public boolean isResult() { |
||||
return result; |
||||
} |
||||
|
||||
public void setResult(boolean result) { |
||||
this.result = result; |
||||
} |
||||
} |
@ -0,0 +1,29 @@ |
||||
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.CarbonIntegralNotify; |
||||
import com.tsl3060.open.extend.core.notify.IAnswer; |
||||
import com.tsl3060.open.extend.core.router.INotifyRouter; |
||||
|
||||
public class CarbonIntegralNotifyRouter implements INotifyRouter { |
||||
private final INotifyListener notifyListener; |
||||
|
||||
public CarbonIntegralNotifyRouter(INotifyListener notifyListener) { |
||||
this.notifyListener = notifyListener; |
||||
} |
||||
|
||||
@Override |
||||
public String path() { |
||||
return "/v1/wanshun/notify/integral"; |
||||
} |
||||
|
||||
@Override |
||||
public IAnswer makeBody(NotifyRequest notifyRequest) throws Exception { |
||||
|
||||
CarbonIntegralNotify carbonIntegralNotify = JSON.to(CarbonIntegralNotify.class, notifyRequest.getPayload()); |
||||
|
||||
return this.notifyListener.integral(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…
Reference in new issue