-
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
b40c507
commit 0a964ed
Showing
12 changed files
with
191 additions
and
181 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Created by maning on 2017/5/12. | ||
* 历史上的今天 | ||
*/ | ||
|
||
@Deprecated | ||
public class MobHistoryTodayEntity { | ||
|
||
|
||
|
91 changes: 91 additions & 0 deletions
91
app/src/main/java/com/maning/gankmm/bean/rolltools/HistoryTodayBean.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,91 @@ | ||
package com.maning.gankmm.bean.rolltools; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-15 | ||
* @desc : | ||
*/ | ||
public class HistoryTodayBean 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 { | ||
/** | ||
* picUrl : http://www.todayonhistory.com/uploadfile/2016/0909/20160909104645350.jpg | ||
* title : 毛泽东逝世40周年纪念日 | ||
* year : 2016 | ||
* month : 9 | ||
* day : 9 | ||
* details : 毛泽东 | ||
1976年9月9日,中国人民的领袖,伟大的无产阶级革命家、战略家和理论家,中国共产党、中国人民解放军和中华人民共和国的主要缔造者和领导人毛泽东逝世,享年83岁。 | ||
今天(2016年9月9日)是毛泽东逝世40周年纪念日,让我们一起回顾他的一生,缅怀这位伟人。 | ||
... | ||
*/ | ||
|
||
private String picUrl; | ||
private String title; | ||
private String year; | ||
private int month; | ||
private int day; | ||
private String details; | ||
|
||
public String getPicUrl() { | ||
return picUrl; | ||
} | ||
|
||
public void setPicUrl(String picUrl) { | ||
this.picUrl = picUrl; | ||
} | ||
|
||
public String getTitle() { | ||
return title; | ||
} | ||
|
||
public void setTitle(String title) { | ||
this.title = title; | ||
} | ||
|
||
public String getYear() { | ||
return year; | ||
} | ||
|
||
public void setYear(String year) { | ||
this.year = year; | ||
} | ||
|
||
public int getMonth() { | ||
return month; | ||
} | ||
|
||
public void setMonth(int month) { | ||
this.month = month; | ||
} | ||
|
||
public int getDay() { | ||
return day; | ||
} | ||
|
||
public void setDay(int day) { | ||
this.day = day; | ||
} | ||
|
||
public String getDetails() { | ||
return details; | ||
} | ||
|
||
public void setDetails(String details) { | ||
this.details = details; | ||
} | ||
} | ||
} |
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
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.