jimu-decompiled/sources/com/ubt/jimu/base/entities/SearchQuizBean.java
2025-05-13 19:24:51 +02:00

155 lines
3.0 KiB
Java

package com.ubt.jimu.base.entities;
import java.util.List;
/* loaded from: classes.dex */
public class SearchQuizBean {
private int current;
private int pages;
private List<RecordsBean> records;
private int size;
private int total;
public static class RecordsBean {
private int answerNum;
private String content;
private long createTime;
private int id;
private int isDeleted;
private Object is_accepted;
private int product;
private int score;
private String tags;
private String title;
private int userId;
public int getAnswerNum() {
return this.answerNum;
}
public String getContent() {
return this.content;
}
public long getCreateTime() {
return this.createTime;
}
public int getId() {
return this.id;
}
public int getIsDeleted() {
return this.isDeleted;
}
public Object getIs_accepted() {
return this.is_accepted;
}
public int getProduct() {
return this.product;
}
public int getScore() {
return this.score;
}
public String getTags() {
return this.tags;
}
public String getTitle() {
return this.title;
}
public int getUserId() {
return this.userId;
}
public void setAnswerNum(int i) {
this.answerNum = i;
}
public void setContent(String str) {
this.content = str;
}
public void setCreateTime(long j) {
this.createTime = j;
}
public void setId(int i) {
this.id = i;
}
public void setIsDeleted(int i) {
this.isDeleted = i;
}
public void setIs_accepted(Object obj) {
this.is_accepted = obj;
}
public void setProduct(int i) {
this.product = i;
}
public void setScore(int i) {
this.score = i;
}
public void setTags(String str) {
this.tags = str;
}
public void setTitle(String str) {
this.title = str;
}
public void setUserId(int i) {
this.userId = i;
}
}
public int getCurrent() {
return this.current;
}
public int getPages() {
return this.pages;
}
public List<RecordsBean> 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<RecordsBean> list) {
this.records = list;
}
public void setSize(int i) {
this.size = i;
}
public void setTotal(int i) {
this.total = i;
}
}