6
0
Fork 0

增加字典查询

master
nishengli 1 year ago
parent 8a64d7037d
commit 9965e99b32
  1. 18
      src/main/java/com/tsl3060/open/extend/core/constant/TypeDefine.java
  2. 27
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonIntegralNotify.java
  3. 27
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonValueNotify.java
  4. 22
      src/main/java/com/tsl3060/open/extend/core/payload/DicQueryPayload.java
  5. 47
      src/main/java/com/tsl3060/open/extend/core/response/DicQueryResponse.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";
}

@ -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 + '\'' +
'}';
}
}

@ -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 + '\'' +
'}';
}
}

@ -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,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;
}
}
}
Loading…
Cancel
Save