1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.application.zhangshi_app_android.bean;
| import java.io.Serializable;
| import java.util.List;
|
| public class GrowthExperienceAutobiographyBean implements Serializable{
|
| //这个时间明显和设计稿上的对应不上
| // 你就得找后台问一问 你看不懂中文吗???
| private String content;
| private int type;
| public String getContent() {
| return content;
| }
| public void setContent(String content) {
| this.content = content;
| }
| public int getType() {
| return type;
| }
| public void setType(int type) {
| this.type = type;
| }
| }
|
|