105 lines
2.0 KiB
Java
105 lines
2.0 KiB
Java
package com.ubt.jimu.blockly.bean;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class BlocklyProjectParameter {
|
|
private String blocklyType;
|
|
private String blocklyVersion;
|
|
private String customModelId;
|
|
private String fileName;
|
|
private String fileUrl;
|
|
private int id;
|
|
private String isDeleted;
|
|
private long lastUploadTime;
|
|
private String modelId;
|
|
private String modelType;
|
|
private String xmlId;
|
|
|
|
public String getBlocklyType() {
|
|
return this.blocklyType;
|
|
}
|
|
|
|
public String getBlocklyVersion() {
|
|
return this.blocklyVersion;
|
|
}
|
|
|
|
public String getCustomModelId() {
|
|
return this.customModelId;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return this.fileName;
|
|
}
|
|
|
|
public String getFileUrl() {
|
|
return this.fileUrl;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public long getLastUploadTime() {
|
|
return this.lastUploadTime;
|
|
}
|
|
|
|
public String getModelId() {
|
|
return this.modelId;
|
|
}
|
|
|
|
public String getModelType() {
|
|
return this.modelType;
|
|
}
|
|
|
|
public String getXmlId() {
|
|
return this.xmlId;
|
|
}
|
|
|
|
public void setBlocklyType(String str) {
|
|
this.blocklyType = str;
|
|
}
|
|
|
|
public void setBlocklyVersion(String str) {
|
|
this.blocklyVersion = str;
|
|
}
|
|
|
|
public void setCustomModelId(String str) {
|
|
this.customModelId = str;
|
|
}
|
|
|
|
public void setFileName(String str) {
|
|
this.fileName = str;
|
|
}
|
|
|
|
public void setFileUrl(String str) {
|
|
this.fileUrl = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setIsDeleted(String str) {
|
|
this.isDeleted = str;
|
|
}
|
|
|
|
public void setLastUploadTime(long j) {
|
|
this.lastUploadTime = j;
|
|
}
|
|
|
|
public void setModelId(String str) {
|
|
this.modelId = str;
|
|
}
|
|
|
|
public void setModelType(String str) {
|
|
this.modelType = str;
|
|
}
|
|
|
|
public void setXmlId(String str) {
|
|
this.xmlId = str;
|
|
}
|
|
}
|