Initial commit
This commit is contained in:
145
sources/com/ubt/jimu/blockly/bean/BlocklyProgramsReturnBean.java
Normal file
145
sources/com/ubt/jimu/blockly/bean/BlocklyProgramsReturnBean.java
Normal file
@@ -0,0 +1,145 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class BlocklyProgramsReturnBean {
|
||||
private String info;
|
||||
private List<ModelsBean> models;
|
||||
private boolean status;
|
||||
|
||||
public static class ModelsBean {
|
||||
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 loaclFilePath;
|
||||
private int 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 getLoaclFilePath() {
|
||||
return this.loaclFilePath;
|
||||
}
|
||||
|
||||
public int 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 setLoaclFilePath(String str) {
|
||||
this.loaclFilePath = str;
|
||||
}
|
||||
|
||||
public void setModelId(int i) {
|
||||
this.modelId = i;
|
||||
}
|
||||
|
||||
public void setModelType(String str) {
|
||||
this.modelType = str;
|
||||
}
|
||||
|
||||
public void setXmlId(String str) {
|
||||
this.xmlId = str;
|
||||
}
|
||||
}
|
||||
|
||||
public String getInfo() {
|
||||
return this.info;
|
||||
}
|
||||
|
||||
public List<ModelsBean> getModels() {
|
||||
return this.models;
|
||||
}
|
||||
|
||||
public boolean isStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setInfo(String str) {
|
||||
this.info = str;
|
||||
}
|
||||
|
||||
public void setModels(List<ModelsBean> list) {
|
||||
this.models = list;
|
||||
}
|
||||
|
||||
public void setStatus(boolean z) {
|
||||
this.status = z;
|
||||
}
|
||||
}
|
233
sources/com/ubt/jimu/blockly/bean/BlocklyProject.java
Normal file
233
sources/com/ubt/jimu/blockly/bean/BlocklyProject.java
Normal file
@@ -0,0 +1,233 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
import com.ubt.jimu.utils.SystemUtils;
|
||||
import java.util.HashMap;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class BlocklyProject extends SuperFilePath {
|
||||
public static final String TYPE_BLOCKLY = "blockly";
|
||||
public static final String TYPE_NEW_BLOCKLY = "newBlockly";
|
||||
private String blocklyType;
|
||||
private String blocklyVersion;
|
||||
private String customModelId;
|
||||
private String defaultName;
|
||||
private Long id;
|
||||
private boolean isDefault;
|
||||
private String isDeleted;
|
||||
private int isFirst;
|
||||
private boolean isModify;
|
||||
private boolean isUploadQiNiu;
|
||||
private boolean isUploadService;
|
||||
private long lastUploadTime;
|
||||
private long modelId;
|
||||
private String modelType;
|
||||
private String userId;
|
||||
private String xmlContent;
|
||||
private String xmlId;
|
||||
private String xmlName;
|
||||
public HashMap<String, String> xmlNameLang;
|
||||
|
||||
public BlocklyProject() {
|
||||
this.isDefault = false;
|
||||
}
|
||||
|
||||
public String getBlocklyType() {
|
||||
return this.blocklyType;
|
||||
}
|
||||
|
||||
public String getBlocklyVersion() {
|
||||
return this.blocklyVersion;
|
||||
}
|
||||
|
||||
public String getCustomModelId() {
|
||||
return this.customModelId;
|
||||
}
|
||||
|
||||
public String getDefaultName() {
|
||||
return this.defaultName;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public boolean getIsDefault() {
|
||||
return this.isDefault;
|
||||
}
|
||||
|
||||
public String getIsDeleted() {
|
||||
return this.isDeleted;
|
||||
}
|
||||
|
||||
public int getIsFirst() {
|
||||
return this.isFirst;
|
||||
}
|
||||
|
||||
public boolean getIsModify() {
|
||||
return this.isModify;
|
||||
}
|
||||
|
||||
public boolean getIsUploadQiNiu() {
|
||||
return this.isUploadQiNiu;
|
||||
}
|
||||
|
||||
public boolean getIsUploadService() {
|
||||
return this.isUploadService;
|
||||
}
|
||||
|
||||
public long getLastUploadTime() {
|
||||
return this.lastUploadTime;
|
||||
}
|
||||
|
||||
public long getModelId() {
|
||||
return this.modelId;
|
||||
}
|
||||
|
||||
public String getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public String getXmlContent() {
|
||||
return this.xmlContent;
|
||||
}
|
||||
|
||||
public String getXmlId() {
|
||||
return this.xmlId;
|
||||
}
|
||||
|
||||
public String getXmlName() {
|
||||
return this.xmlName;
|
||||
}
|
||||
|
||||
public boolean isModify() {
|
||||
return this.isModify;
|
||||
}
|
||||
|
||||
public boolean isUploadQiNiu() {
|
||||
return this.isUploadQiNiu;
|
||||
}
|
||||
|
||||
public boolean isUploadService() {
|
||||
return this.isUploadService;
|
||||
}
|
||||
|
||||
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 setId(Long l) {
|
||||
this.id = l;
|
||||
}
|
||||
|
||||
public void setIsDefault(boolean z) {
|
||||
this.isDefault = z;
|
||||
}
|
||||
|
||||
public void setIsDeleted(String str) {
|
||||
this.isDeleted = str;
|
||||
}
|
||||
|
||||
public void setIsFirst(int i) {
|
||||
this.isFirst = i;
|
||||
}
|
||||
|
||||
public void setIsModify(boolean z) {
|
||||
this.isModify = z;
|
||||
}
|
||||
|
||||
public void setIsUploadQiNiu(boolean z) {
|
||||
this.isUploadQiNiu = z;
|
||||
}
|
||||
|
||||
public void setIsUploadService(boolean z) {
|
||||
this.isUploadService = z;
|
||||
}
|
||||
|
||||
public void setLastUploadTime(long j) {
|
||||
this.lastUploadTime = j;
|
||||
}
|
||||
|
||||
public void setModelId(long j) {
|
||||
this.modelId = j;
|
||||
}
|
||||
|
||||
public void setModelType(String str) {
|
||||
this.modelType = str;
|
||||
}
|
||||
|
||||
public void setModify(boolean z) {
|
||||
this.isModify = z;
|
||||
}
|
||||
|
||||
public void setUploadQiNiu(boolean z) {
|
||||
this.isUploadQiNiu = z;
|
||||
}
|
||||
|
||||
public void setUploadService(boolean z) {
|
||||
this.isUploadService = z;
|
||||
}
|
||||
|
||||
public void setUserId(String str) {
|
||||
this.userId = str;
|
||||
}
|
||||
|
||||
public void setXmlContent(String str) {
|
||||
this.xmlContent = str;
|
||||
}
|
||||
|
||||
public void setXmlId(String str) {
|
||||
this.xmlId = str;
|
||||
}
|
||||
|
||||
public void setXmlName(String str) {
|
||||
this.xmlName = str;
|
||||
}
|
||||
|
||||
public BlocklyProject(String str, String str2, long j, String str3, String str4, String str5, String str6, String str7, String str8) {
|
||||
this.isDefault = false;
|
||||
this.userId = str;
|
||||
this.blocklyType = str4;
|
||||
this.modelType = str2;
|
||||
this.modelId = j;
|
||||
this.customModelId = str3;
|
||||
this.isModify = false;
|
||||
this.xmlId = str5;
|
||||
this.xmlName = str6;
|
||||
this.lastUploadTime = SystemUtils.a();
|
||||
this.blocklyVersion = str7;
|
||||
this.xmlContent = str8;
|
||||
}
|
||||
|
||||
public BlocklyProject(Long l, String str, String str2, boolean z, boolean z2, boolean z3, String str3, int i, String str4, long j, boolean z4, String str5, String str6, String str7, long j2, String str8, String str9) {
|
||||
this.isDefault = false;
|
||||
this.id = l;
|
||||
this.userId = str;
|
||||
this.xmlId = str2;
|
||||
this.isModify = z;
|
||||
this.isUploadQiNiu = z2;
|
||||
this.isUploadService = z3;
|
||||
this.xmlName = str3;
|
||||
this.isFirst = i;
|
||||
this.xmlContent = str4;
|
||||
this.lastUploadTime = j;
|
||||
this.isDefault = z4;
|
||||
this.blocklyVersion = str5;
|
||||
this.blocklyType = str6;
|
||||
this.modelType = str7;
|
||||
this.modelId = j2;
|
||||
this.customModelId = str8;
|
||||
this.isDeleted = str9;
|
||||
}
|
||||
}
|
104
sources/com/ubt/jimu/blockly/bean/BlocklyProjectParameter.java
Normal file
104
sources/com/ubt/jimu/blockly/bean/BlocklyProjectParameter.java
Normal file
@@ -0,0 +1,104 @@
|
||||
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;
|
||||
}
|
||||
}
|
158
sources/com/ubt/jimu/blockly/bean/JimuMotion.java
Normal file
158
sources/com/ubt/jimu/blockly/bean/JimuMotion.java
Normal file
@@ -0,0 +1,158 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import com.ubt.jimu.utils.JsonHelper;
|
||||
import java.util.ArrayList;
|
||||
import org.greenrobot.greendao.converter.PropertyConverter;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuMotion {
|
||||
public ArrayList<JimuServo> actionData;
|
||||
private String actionID;
|
||||
private String actionName;
|
||||
private String customModelId;
|
||||
private String defaultName;
|
||||
private String isDeleted;
|
||||
private int isFirst;
|
||||
private boolean isUploadService;
|
||||
private long lastUploadTime;
|
||||
private Long localId;
|
||||
private int modelId;
|
||||
private String modelType;
|
||||
private String userId;
|
||||
|
||||
public static class JimuServo {
|
||||
public int degree;
|
||||
public int ms;
|
||||
public int servo;
|
||||
}
|
||||
|
||||
public static class JimuServoConverter implements PropertyConverter<ArrayList<JimuServo>, String> {
|
||||
public String convertToDatabaseValue(ArrayList<JimuServo> arrayList) {
|
||||
return JsonHelper.a(arrayList);
|
||||
}
|
||||
|
||||
public ArrayList<JimuServo> convertToEntityProperty(String str) {
|
||||
return (ArrayList) JsonHelper.a(str, new TypeToken<ArrayList<JimuServo>>() { // from class: com.ubt.jimu.blockly.bean.JimuMotion.JimuServoConverter.1
|
||||
}.getType());
|
||||
}
|
||||
}
|
||||
|
||||
public JimuMotion(Long l, String str, String str2, String str3, int i, boolean z, long j, int i2, String str4, String str5, String str6, ArrayList<JimuServo> arrayList) {
|
||||
this.localId = l;
|
||||
this.modelType = str;
|
||||
this.customModelId = str2;
|
||||
this.isDeleted = str3;
|
||||
this.modelId = i;
|
||||
this.isUploadService = z;
|
||||
this.lastUploadTime = j;
|
||||
this.isFirst = i2;
|
||||
this.actionName = str4;
|
||||
this.actionID = str5;
|
||||
this.userId = str6;
|
||||
this.actionData = arrayList;
|
||||
}
|
||||
|
||||
public ArrayList<JimuServo> getActionData() {
|
||||
return this.actionData;
|
||||
}
|
||||
|
||||
public String getActionID() {
|
||||
return this.actionID;
|
||||
}
|
||||
|
||||
public String getActionName() {
|
||||
return this.actionName;
|
||||
}
|
||||
|
||||
public String getCustomModelId() {
|
||||
return this.customModelId;
|
||||
}
|
||||
|
||||
public String getDefaultName() {
|
||||
return this.defaultName;
|
||||
}
|
||||
|
||||
public String getIsDeleted() {
|
||||
return this.isDeleted;
|
||||
}
|
||||
|
||||
public int getIsFirst() {
|
||||
return this.isFirst;
|
||||
}
|
||||
|
||||
public boolean getIsUploadService() {
|
||||
return this.isUploadService;
|
||||
}
|
||||
|
||||
public long getLastUploadTime() {
|
||||
return this.lastUploadTime;
|
||||
}
|
||||
|
||||
public Long getLocalId() {
|
||||
return this.localId;
|
||||
}
|
||||
|
||||
public int getModelId() {
|
||||
return this.modelId;
|
||||
}
|
||||
|
||||
public String getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setActionData(ArrayList<JimuServo> arrayList) {
|
||||
this.actionData = arrayList;
|
||||
}
|
||||
|
||||
public void setActionID(String str) {
|
||||
this.actionID = str;
|
||||
}
|
||||
|
||||
public void setActionName(String str) {
|
||||
this.actionName = str;
|
||||
}
|
||||
|
||||
public void setCustomModelId(String str) {
|
||||
this.customModelId = str;
|
||||
}
|
||||
|
||||
public void setIsDeleted(String str) {
|
||||
this.isDeleted = str;
|
||||
}
|
||||
|
||||
public void setIsFirst(int i) {
|
||||
this.isFirst = i;
|
||||
}
|
||||
|
||||
public void setIsUploadService(boolean z) {
|
||||
this.isUploadService = z;
|
||||
}
|
||||
|
||||
public void setLastUploadTime(long j) {
|
||||
this.lastUploadTime = j;
|
||||
}
|
||||
|
||||
public void setLocalId(Long l) {
|
||||
this.localId = l;
|
||||
}
|
||||
|
||||
public void setModelId(int i) {
|
||||
this.modelId = i;
|
||||
}
|
||||
|
||||
public void setModelType(String str) {
|
||||
this.modelType = str;
|
||||
}
|
||||
|
||||
public void setUserId(String str) {
|
||||
this.userId = str;
|
||||
}
|
||||
|
||||
public JimuMotion() {
|
||||
}
|
||||
}
|
86
sources/com/ubt/jimu/blockly/bean/JimuMotionParameter.java
Normal file
86
sources/com/ubt/jimu/blockly/bean/JimuMotionParameter.java
Normal file
@@ -0,0 +1,86 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuMotionParameter {
|
||||
private String customModelId;
|
||||
private int id;
|
||||
private String isDeleted;
|
||||
private long lastUploadTime;
|
||||
private String modelId;
|
||||
private String modelType;
|
||||
private String postureCmd;
|
||||
private String postureId;
|
||||
private String postureName;
|
||||
|
||||
public String getCustomModelId() {
|
||||
return this.customModelId;
|
||||
}
|
||||
|
||||
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 getPostureCmd() {
|
||||
return this.postureCmd;
|
||||
}
|
||||
|
||||
public String getPostureId() {
|
||||
return this.postureId;
|
||||
}
|
||||
|
||||
public String getPostureName() {
|
||||
return this.postureName;
|
||||
}
|
||||
|
||||
public void setCustomModelId(String str) {
|
||||
this.customModelId = 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 setPostureCmd(String str) {
|
||||
this.postureCmd = str;
|
||||
}
|
||||
|
||||
public void setPostureId(String str) {
|
||||
this.postureId = str;
|
||||
}
|
||||
|
||||
public void setPostureName(String str) {
|
||||
this.postureName = str;
|
||||
}
|
||||
}
|
118
sources/com/ubt/jimu/blockly/bean/JimuMotionReturnBean.java
Normal file
118
sources/com/ubt/jimu/blockly/bean/JimuMotionReturnBean.java
Normal file
@@ -0,0 +1,118 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuMotionReturnBean {
|
||||
private String info;
|
||||
private List<ModelsBean> models;
|
||||
private boolean status;
|
||||
|
||||
public static class ModelsBean {
|
||||
private String customModelId;
|
||||
private int id;
|
||||
private String isDeleted;
|
||||
private long lastUploadTime;
|
||||
private int modelId;
|
||||
private String modelType;
|
||||
private String postureCmd;
|
||||
private String postureId;
|
||||
private String postureName;
|
||||
|
||||
public String getCustomModelId() {
|
||||
return this.customModelId;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getIsDeleted() {
|
||||
return this.isDeleted;
|
||||
}
|
||||
|
||||
public long getLastUploadTime() {
|
||||
return this.lastUploadTime;
|
||||
}
|
||||
|
||||
public int getModelId() {
|
||||
return this.modelId;
|
||||
}
|
||||
|
||||
public String getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
public String getPostureCmd() {
|
||||
return this.postureCmd;
|
||||
}
|
||||
|
||||
public String getPostureId() {
|
||||
return this.postureId;
|
||||
}
|
||||
|
||||
public String getPostureName() {
|
||||
return this.postureName;
|
||||
}
|
||||
|
||||
public void setCustomModelId(String str) {
|
||||
this.customModelId = 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(int i) {
|
||||
this.modelId = i;
|
||||
}
|
||||
|
||||
public void setModelType(String str) {
|
||||
this.modelType = str;
|
||||
}
|
||||
|
||||
public void setPostureCmd(String str) {
|
||||
this.postureCmd = str;
|
||||
}
|
||||
|
||||
public void setPostureId(String str) {
|
||||
this.postureId = str;
|
||||
}
|
||||
|
||||
public void setPostureName(String str) {
|
||||
this.postureName = str;
|
||||
}
|
||||
}
|
||||
|
||||
public String getInfo() {
|
||||
return this.info;
|
||||
}
|
||||
|
||||
public List<ModelsBean> getModels() {
|
||||
return this.models;
|
||||
}
|
||||
|
||||
public boolean isStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setInfo(String str) {
|
||||
this.info = str;
|
||||
}
|
||||
|
||||
public void setModels(List<ModelsBean> list) {
|
||||
this.models = list;
|
||||
}
|
||||
|
||||
public void setStatus(boolean z) {
|
||||
this.status = z;
|
||||
}
|
||||
}
|
226
sources/com/ubt/jimu/blockly/bean/JimuSound.java
Normal file
226
sources/com/ubt/jimu/blockly/bean/JimuSound.java
Normal file
@@ -0,0 +1,226 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
import com.ubt.jimu.utils.SystemUtils;
|
||||
import java.util.Objects;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuSound extends SuperFilePath {
|
||||
public static final String TYPE_ANIMAL = "animal";
|
||||
public static final String TYPE_MACHINE = "machine";
|
||||
public static final String TYPE_RECORDING = "recording";
|
||||
public static final String TYPE_TUNE = "tune";
|
||||
private String audioId;
|
||||
private String beatTime;
|
||||
private String branchId;
|
||||
private String defaultName;
|
||||
private String description;
|
||||
private String duration;
|
||||
private String icon;
|
||||
private Long id;
|
||||
private boolean isDelay;
|
||||
private String isDeleted;
|
||||
private int isFirst;
|
||||
private boolean isSyncUbtService;
|
||||
private boolean isUploadQiNiu;
|
||||
private String key;
|
||||
private long lastUploadTime;
|
||||
private String playPath;
|
||||
private String type;
|
||||
private String userId;
|
||||
|
||||
public JimuSound(String str, String str2, String str3, String str4) {
|
||||
this.type = str;
|
||||
this.key = str2;
|
||||
this.icon = str4;
|
||||
this.description = str3;
|
||||
this.audioId = str2;
|
||||
this.lastUploadTime = SystemUtils.a();
|
||||
}
|
||||
|
||||
public boolean equals(Object obj) {
|
||||
if (obj == null || !(obj instanceof JimuSound)) {
|
||||
return false;
|
||||
}
|
||||
JimuSound jimuSound = (JimuSound) obj;
|
||||
return this.type.equals(jimuSound.type) && this.key.equals(jimuSound.key);
|
||||
}
|
||||
|
||||
public String getAudioId() {
|
||||
return this.audioId;
|
||||
}
|
||||
|
||||
public String getBeatTime() {
|
||||
return this.beatTime;
|
||||
}
|
||||
|
||||
public String getBranchId() {
|
||||
return this.branchId;
|
||||
}
|
||||
|
||||
public String getDefaultName() {
|
||||
return this.defaultName;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public String getDuration() {
|
||||
return this.duration;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public boolean getIsDelay() {
|
||||
return this.isDelay;
|
||||
}
|
||||
|
||||
public String getIsDeleted() {
|
||||
return this.isDeleted;
|
||||
}
|
||||
|
||||
public int getIsFirst() {
|
||||
return this.isFirst;
|
||||
}
|
||||
|
||||
public boolean getIsSyncUbtService() {
|
||||
return this.isSyncUbtService;
|
||||
}
|
||||
|
||||
public boolean getIsUploadQiNiu() {
|
||||
return this.isUploadQiNiu;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
return this.key;
|
||||
}
|
||||
|
||||
public long getLastUploadTime() {
|
||||
return this.lastUploadTime;
|
||||
}
|
||||
|
||||
public String getPlayPath() {
|
||||
return this.playPath;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.key, this.type);
|
||||
}
|
||||
|
||||
public boolean isSyncUbtService() {
|
||||
return this.isSyncUbtService;
|
||||
}
|
||||
|
||||
public boolean isUploadQiNiu() {
|
||||
return this.isUploadQiNiu;
|
||||
}
|
||||
|
||||
public void setAudioId(String str) {
|
||||
this.audioId = str;
|
||||
}
|
||||
|
||||
public void setBeatTime(String str) {
|
||||
this.beatTime = str;
|
||||
}
|
||||
|
||||
public void setBranchId(String str) {
|
||||
this.branchId = str;
|
||||
}
|
||||
|
||||
public void setDescription(String str) {
|
||||
this.description = str;
|
||||
}
|
||||
|
||||
public void setDuration(String str) {
|
||||
this.duration = str;
|
||||
}
|
||||
|
||||
public void setIcon(String str) {
|
||||
this.icon = str;
|
||||
}
|
||||
|
||||
public void setId(Long l) {
|
||||
this.id = l;
|
||||
}
|
||||
|
||||
public void setIsDelay(boolean z) {
|
||||
this.isDelay = z;
|
||||
}
|
||||
|
||||
public void setIsDeleted(String str) {
|
||||
this.isDeleted = str;
|
||||
}
|
||||
|
||||
public void setIsFirst(int i) {
|
||||
this.isFirst = i;
|
||||
}
|
||||
|
||||
public void setIsSyncUbtService(boolean z) {
|
||||
this.isSyncUbtService = z;
|
||||
}
|
||||
|
||||
public void setIsUploadQiNiu(boolean z) {
|
||||
this.isUploadQiNiu = z;
|
||||
}
|
||||
|
||||
public void setKey(String str) {
|
||||
this.key = str;
|
||||
}
|
||||
|
||||
public void setLastUploadTime(long j) {
|
||||
this.lastUploadTime = j;
|
||||
}
|
||||
|
||||
public void setPlayPath(String str) {
|
||||
this.playPath = str;
|
||||
}
|
||||
|
||||
public void setSyncUbtService(boolean z) {
|
||||
this.isSyncUbtService = z;
|
||||
}
|
||||
|
||||
public void setType(String str) {
|
||||
this.type = str;
|
||||
}
|
||||
|
||||
public void setUploadQiNiu(boolean z) {
|
||||
this.isUploadQiNiu = z;
|
||||
}
|
||||
|
||||
public void setUserId(String str) {
|
||||
this.userId = str;
|
||||
}
|
||||
|
||||
public JimuSound(Long l, String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8, boolean z, boolean z2, long j, int i) {
|
||||
this.id = l;
|
||||
this.userId = str;
|
||||
this.key = str2;
|
||||
this.icon = str3;
|
||||
this.audioId = str4;
|
||||
this.type = str5;
|
||||
this.duration = str6;
|
||||
this.description = str7;
|
||||
this.isDeleted = str8;
|
||||
this.isUploadQiNiu = z;
|
||||
this.isSyncUbtService = z2;
|
||||
this.lastUploadTime = j;
|
||||
this.isFirst = i;
|
||||
}
|
||||
|
||||
public JimuSound() {
|
||||
}
|
||||
}
|
86
sources/com/ubt/jimu/blockly/bean/JimuSoundParameter.java
Normal file
86
sources/com/ubt/jimu/blockly/bean/JimuSoundParameter.java
Normal file
@@ -0,0 +1,86 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuSoundParameter {
|
||||
private String audioId;
|
||||
private String description;
|
||||
private String duration;
|
||||
private String fileUrl;
|
||||
private int id;
|
||||
private int isDeleted;
|
||||
private long lastUploadTime;
|
||||
private String type;
|
||||
private String userId;
|
||||
|
||||
public String getAudioId() {
|
||||
return this.audioId;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public String getDuration() {
|
||||
return this.duration;
|
||||
}
|
||||
|
||||
public String getFileUrl() {
|
||||
return this.fileUrl;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public int getIsDeleted() {
|
||||
return this.isDeleted;
|
||||
}
|
||||
|
||||
public long getLastUploadTime() {
|
||||
return this.lastUploadTime;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setAudioId(String str) {
|
||||
this.audioId = str;
|
||||
}
|
||||
|
||||
public void setDescription(String str) {
|
||||
this.description = str;
|
||||
}
|
||||
|
||||
public void setDuration(String str) {
|
||||
this.duration = str;
|
||||
}
|
||||
|
||||
public void setFileUrl(String str) {
|
||||
this.fileUrl = str;
|
||||
}
|
||||
|
||||
public void setId(int i) {
|
||||
this.id = i;
|
||||
}
|
||||
|
||||
public void setIsDeleted(int i) {
|
||||
this.isDeleted = i;
|
||||
}
|
||||
|
||||
public void setLastUploadTime(long j) {
|
||||
this.lastUploadTime = j;
|
||||
}
|
||||
|
||||
public void setType(String str) {
|
||||
this.type = str;
|
||||
}
|
||||
|
||||
public void setUserId(String str) {
|
||||
this.userId = str;
|
||||
}
|
||||
}
|
23
sources/com/ubt/jimu/blockly/bean/SuperFilePath.java
Normal file
23
sources/com/ubt/jimu/blockly/bean/SuperFilePath.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.ubt.jimu.blockly.bean;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class SuperFilePath {
|
||||
public String fileUrl;
|
||||
public String localFilePath;
|
||||
|
||||
public String getFileUrl() {
|
||||
return this.fileUrl;
|
||||
}
|
||||
|
||||
public String getLocalFilePath() {
|
||||
return this.localFilePath;
|
||||
}
|
||||
|
||||
public void setFileUrl(String str) {
|
||||
this.fileUrl = str;
|
||||
}
|
||||
|
||||
public void setLocalFilePath(String str) {
|
||||
this.localFilePath = str;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user