113 lines
2.1 KiB
Java
113 lines
2.1 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ArticleBean {
|
|
private int current;
|
|
private int pages;
|
|
private List<Article> records;
|
|
private int size;
|
|
private int total;
|
|
|
|
public class Article {
|
|
private int activityId;
|
|
private String browseNum;
|
|
private String content;
|
|
private int id;
|
|
private List<JImage> imgLsit;
|
|
private String title;
|
|
|
|
public Article() {
|
|
}
|
|
|
|
public int getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public String getBrowseNum() {
|
|
return this.browseNum;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public List<JImage> getImgLsit() {
|
|
return this.imgLsit;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public void setActivityId(int i) {
|
|
this.activityId = i;
|
|
}
|
|
|
|
public void setBrowseNum(String str) {
|
|
this.browseNum = str;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setImgLsit(List<JImage> list) {
|
|
this.imgLsit = list;
|
|
}
|
|
|
|
public void setTitle(String str) {
|
|
this.title = str;
|
|
}
|
|
}
|
|
|
|
public int getCurrent() {
|
|
return this.current;
|
|
}
|
|
|
|
public int getPages() {
|
|
return this.pages;
|
|
}
|
|
|
|
public List<Article> getRecords() {
|
|
return this.records;
|
|
}
|
|
|
|
public int getSize() {
|
|
return this.size;
|
|
}
|
|
|
|
public int getTotal() {
|
|
return this.total;
|
|
}
|
|
|
|
public void setCurrent(int i) {
|
|
this.current = i;
|
|
}
|
|
|
|
public void setPages(int i) {
|
|
this.pages = i;
|
|
}
|
|
|
|
public void setRecords(List<Article> list) {
|
|
this.records = list;
|
|
}
|
|
|
|
public void setSize(int i) {
|
|
this.size = i;
|
|
}
|
|
|
|
public void setTotal(int i) {
|
|
this.total = i;
|
|
}
|
|
}
|