87 lines
1.7 KiB
Java
87 lines
1.7 KiB
Java
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;
|
|
}
|
|
}
|