-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a964ed
commit 1699427
Showing
42 changed files
with
542 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
124 changes: 124 additions & 0 deletions
124
app/src/main/java/com/maning/gankmm/bean/rolltools/DictionaryResultBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
package com.maning.gankmm.bean.rolltools; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-15 | ||
* @desc : | ||
*/ | ||
public class DictionaryResultBean extends RollToolsBaseBean { | ||
|
||
|
||
private List<DataEntity> data; | ||
|
||
public List<DataEntity> getData() { | ||
return data; | ||
} | ||
|
||
public void setData(List<DataEntity> data) { | ||
this.data = data; | ||
} | ||
|
||
public static class DataEntity { | ||
/** | ||
* word : 穆 | ||
* traditional : 穆 | ||
* pinyin : mù | ||
* radicals : 禾 | ||
* explanation : 穆 | ||
(形声。本义禾名) | ||
同本义 | ||
穆,禾也。--《说文》。段玉裁注盖禾有名穆者也。” | ||
古时宗庙制度,父居左为昭,子居右为穆。参见昭穆” | ||
辩庙祧之昭穆。--《周礼·小宗伯》。注父曰昭,子曰穆。” | ||
代指右边 | ||
只见贾府人分了昭穆,排班立定。--《红楼梦》 | ||
又如昭穆(左边和右边) | ||
姓 | ||
穆 | ||
恭敬 | ||
于穆清庙。--《诗·周颂·清庙》 | ||
穆穆皇皇。--《诗·大雅·假乐》 | ||
我其为王穆卜。--《书·金滕》。传 | ||
穆mù | ||
⒈和畅,美好~如清风。 | ||
⒉和睦不~。 | ||
⒊恭敬,严肃静~。肃~。~ ~皇皇(皇皇美好的样子)。 | ||
* strokes : 16 | ||
*/ | ||
|
||
private String word; | ||
private String traditional; | ||
private String pinyin; | ||
private String radicals; | ||
private String explanation; | ||
private int strokes; | ||
|
||
public String getWord() { | ||
return word; | ||
} | ||
|
||
public void setWord(String word) { | ||
this.word = word; | ||
} | ||
|
||
public String getTraditional() { | ||
return traditional; | ||
} | ||
|
||
public void setTraditional(String traditional) { | ||
this.traditional = traditional; | ||
} | ||
|
||
public String getPinyin() { | ||
return pinyin; | ||
} | ||
|
||
public void setPinyin(String pinyin) { | ||
this.pinyin = pinyin; | ||
} | ||
|
||
public String getRadicals() { | ||
return radicals; | ||
} | ||
|
||
public void setRadicals(String radicals) { | ||
this.radicals = radicals; | ||
} | ||
|
||
public String getExplanation() { | ||
return explanation; | ||
} | ||
|
||
public void setExplanation(String explanation) { | ||
this.explanation = explanation; | ||
} | ||
|
||
public int getStrokes() { | ||
return strokes; | ||
} | ||
|
||
public void setStrokes(int strokes) { | ||
this.strokes = strokes; | ||
} | ||
} | ||
} |
78 changes: 78 additions & 0 deletions
78
app/src/main/java/com/maning/gankmm/bean/rolltools/RubbishTypeResultBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
package com.maning.gankmm.bean.rolltools; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-15 | ||
* @desc : | ||
*/ | ||
public class RubbishTypeResultBean extends RollToolsBaseBean { | ||
|
||
|
||
/** | ||
* data : {"aim":{"goodsName":"西瓜","goodsType":"湿垃圾"},"recommendList":[{"goodsName":"西瓜霜含片塑料铝箔包装","goodsType":"有害垃圾"}]} | ||
*/ | ||
|
||
private DataEntity data; | ||
|
||
public DataEntity getData() { | ||
return data; | ||
} | ||
|
||
public void setData(DataEntity data) { | ||
this.data = data; | ||
} | ||
|
||
public static class DataEntity { | ||
/** | ||
* aim : {"goodsName":"西瓜","goodsType":"湿垃圾"} | ||
* recommendList : [{"goodsName":"西瓜霜含片塑料铝箔包装","goodsType":"有害垃圾"}] | ||
*/ | ||
|
||
private AimEntity aim; | ||
private List<AimEntity> recommendList; | ||
|
||
public AimEntity getAim() { | ||
return aim; | ||
} | ||
|
||
public void setAim(AimEntity aim) { | ||
this.aim = aim; | ||
} | ||
|
||
public List<AimEntity> getRecommendList() { | ||
return recommendList; | ||
} | ||
|
||
public void setRecommendList(List<AimEntity> recommendList) { | ||
this.recommendList = recommendList; | ||
} | ||
|
||
public static class AimEntity { | ||
/** | ||
* goodsName : 西瓜 | ||
* goodsType : 湿垃圾 | ||
*/ | ||
|
||
private String goodsName; | ||
private String goodsType; | ||
|
||
public String getGoodsName() { | ||
return goodsName; | ||
} | ||
|
||
public void setGoodsName(String goodsName) { | ||
this.goodsName = goodsName; | ||
} | ||
|
||
public String getGoodsType() { | ||
return goodsType; | ||
} | ||
|
||
public void setGoodsType(String goodsType) { | ||
this.goodsType = goodsType; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.