120 lines
2.3 KiB
Java
120 lines
2.3 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class PartEntities {
|
|
private int current;
|
|
private int pages;
|
|
private List<RecordsBean> records;
|
|
private int size;
|
|
private int total;
|
|
|
|
public static class RecordsBean {
|
|
private int componentId;
|
|
private String decription;
|
|
private int id;
|
|
private String image;
|
|
private String name;
|
|
private int num;
|
|
private String type;
|
|
private String updateTime;
|
|
|
|
public int getComponentId() {
|
|
return this.componentId;
|
|
}
|
|
|
|
public String getDecription() {
|
|
return this.decription;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getImage() {
|
|
return this.image;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public int getNum() {
|
|
return this.num;
|
|
}
|
|
|
|
public String getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public String getUpdateTime() {
|
|
return this.updateTime;
|
|
}
|
|
|
|
public void setDecription(String str) {
|
|
this.decription = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setImage(String str) {
|
|
this.image = str;
|
|
}
|
|
|
|
public void setName(String str) {
|
|
this.name = str;
|
|
}
|
|
|
|
public void setType(String str) {
|
|
this.type = str;
|
|
}
|
|
|
|
public void setUpdateTime(String str) {
|
|
this.updateTime = str;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|