diff --git a/src/main/java/com/tsl3060/open/extend/core/constant/TypeDefine.java b/src/main/java/com/tsl3060/open/extend/core/constant/TypeDefine.java new file mode 100644 index 0000000..22e2db4 --- /dev/null +++ b/src/main/java/com/tsl3060/open/extend/core/constant/TypeDefine.java @@ -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"; +} diff --git a/src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java b/src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java index 6401b05..bd9a229 100644 --- a/src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java +++ b/src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java @@ -35,7 +35,30 @@ public class CarbonIntegralNotify { * 备注信息 */ 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; @@ -104,7 +127,7 @@ public class CarbonIntegralNotify { @Override public String toString() { return "CarbonIntegralNotify{" + - "openId='" + openid + '\'' + + "openid='" + openid + '\'' + ", orderNo='" + orderNo + '\'' + ", typeId='" + typeId + '\'' + ", typeName='" + typeName + '\'' + @@ -112,6 +135,8 @@ public class CarbonIntegralNotify { ", balance='" + balance + '\'' + ", time='" + time + '\'' + ", fettle='" + fettle + '\'' + + ", subject='" + subject + '\'' + + ", description='" + description + '\'' + '}'; } } diff --git a/src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java b/src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java index bf8ad8f..b430d1d 100644 --- a/src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java +++ b/src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java @@ -27,6 +27,31 @@ public class CarbonValueNotify { 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; } @@ -102,6 +127,8 @@ public class CarbonValueNotify { ", orderNo='" + orderNo + '\'' + ", time='" + time + '\'' + ", fettle='" + fettle + '\'' + + ", subject='" + subject + '\'' + + ", description='" + description + '\'' + '}'; } } diff --git a/src/main/java/com/tsl3060/open/extend/core/payload/DicQueryPayload.java b/src/main/java/com/tsl3060/open/extend/core/payload/DicQueryPayload.java new file mode 100644 index 0000000..7f20880 --- /dev/null +++ b/src/main/java/com/tsl3060/open/extend/core/payload/DicQueryPayload.java @@ -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; + } + +} diff --git a/src/main/java/com/tsl3060/open/extend/core/response/DicQueryResponse.java b/src/main/java/com/tsl3060/open/extend/core/response/DicQueryResponse.java new file mode 100644 index 0000000..80a8310 --- /dev/null +++ b/src/main/java/com/tsl3060/open/extend/core/response/DicQueryResponse.java @@ -0,0 +1,47 @@ +package com.tsl3060.open.extend.core.response; + +import java.util.List; + +public class DicQueryResponse { + + private boolean result; + private List dic; + + public boolean isResult() { + return result; + } + + public void setResult(boolean result) { + this.result = result; + } + + public List getDic() { + return dic; + } + + public void setDic(List 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; + } + } +}