parent
8a64d7037d
commit
9965e99b32
@ -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,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…
Reference in new issue