Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class BuildCompletedImage {
private long createDate;
private long id;
private String imageName;
private int imageOrder;
private String imageUrl;
private int isDeleted;
private String modelId;
private long updateDate;
public long getCreateDate() {
return this.createDate;
}
public long getId() {
return this.id;
}
public String getImageName() {
return this.imageName;
}
public int getImageOrder() {
return this.imageOrder;
}
public String getImageUrl() {
return this.imageUrl;
}
public int getIsDeleted() {
return this.isDeleted;
}
public String getModelId() {
return this.modelId;
}
public long getUpdateDate() {
return this.updateDate;
}
}

View File

@@ -0,0 +1,19 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public interface CategoryModel {
public static final String digitalTube = "6.6";
public static final String fastening = "2";
public static final String garnish = "1";
public static final String gyroscope = "6.4";
public static final String infrared = "6.1";
public static final String light = "6.2";
public static final String line = "3";
public static final String mainboard = "5";
public static final String motor = "7";
public static final String servo = "4";
public static final String speaker = "6.3";
public static final String touch = "6.5";
public static final String ultrasonic = "6.7";
public static final String unknown = "unknown";
}

View File

@@ -0,0 +1,65 @@
package com.ubt.jimu.diy.model;
import com.ubt.jimu.diy.DiyRobotFile;
/* loaded from: classes.dex */
public class DiyActionFile {
private long createTime;
private String fileImage;
private String fileName;
private String fileUrl;
private long id;
private int isDeleted;
private int modelId;
private long updateTime;
public static DiyRobotFile getModelFile(String str, DiyActionFile diyActionFile) {
if (diyActionFile == null) {
return null;
}
DiyRobotFile diyRobotFile = new DiyRobotFile();
diyRobotFile.setFileType(DiyRobotFile.TYPE_ACTION);
diyRobotFile.setFileUrl(diyActionFile.getFileUrl());
diyRobotFile.setFileName(diyActionFile.getFileName());
diyRobotFile.setDisplayName(diyActionFile.getFileName());
diyRobotFile.setContent("");
diyRobotFile.setRemark("");
diyRobotFile.setServerModelId(diyActionFile.getModelId());
diyRobotFile.setCustomModelId(str);
diyRobotFile.setCreateDate(diyActionFile.getCreateTime());
diyRobotFile.setUpdateDate(diyActionFile.getUpdateTime());
return diyRobotFile;
}
public long getCreateTime() {
return this.createTime;
}
public String getFileImage() {
return this.fileImage;
}
public String getFileName() {
return this.fileName;
}
public String getFileUrl() {
return this.fileUrl;
}
public long getId() {
return this.id;
}
public int getIsDeleted() {
return this.isDeleted;
}
public int getModelId() {
return this.modelId;
}
public long getUpdateTime() {
return this.updateTime;
}
}

View File

@@ -0,0 +1,134 @@
package com.ubt.jimu.diy.model;
import java.io.Serializable;
import java.util.List;
import java.util.Objects;
/* loaded from: classes.dex */
public class DiyBuildModel implements Serializable {
private String descName;
private List<BuildVideoModel> picUrl;
private int position;
private String preViewUrl;
private int state = 0;
private int step = 1;
private boolean isDelete = false;
public static class BuildVideoModel implements Serializable {
private int isVideo = 0;
private String preDataViewUrl;
private String preViewUrl;
private String videoDataUrl;
private String videoUrl;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || BuildVideoModel.class != obj.getClass()) {
return false;
}
return Objects.equals(this.preDataViewUrl, ((BuildVideoModel) obj).preDataViewUrl);
}
public int getIsVideo() {
return this.isVideo;
}
public String getPreDataViewUrl() {
return this.preDataViewUrl;
}
public String getPreViewUrl() {
return this.preViewUrl;
}
public String getVideoDataUrl() {
return this.videoDataUrl;
}
public String getVideoUrl() {
return this.videoUrl;
}
public int hashCode() {
return Objects.hash(this.preDataViewUrl);
}
public void setIsVideo(int i) {
this.isVideo = i;
}
public void setPreDataViewUrl(String str) {
this.preDataViewUrl = str;
}
public void setPreViewUrl(String str) {
this.preViewUrl = str;
}
public void setVideoDataUrl(String str) {
this.videoDataUrl = str;
}
public void setVideoUrl(String str) {
this.videoUrl = str;
}
}
public String getDescName() {
return this.descName;
}
public List<BuildVideoModel> getPicUrl() {
return this.picUrl;
}
public int getPosition() {
return this.position;
}
public String getPreViewUrl() {
return this.preViewUrl;
}
public int getState() {
return this.state;
}
public int getStep() {
return this.step;
}
public boolean isDelete() {
return this.isDelete;
}
public void setDelete(boolean z) {
this.isDelete = z;
}
public void setDescName(String str) {
this.descName = str;
}
public void setPicUrl(List<BuildVideoModel> list) {
this.picUrl = list;
}
public void setPosition(int i) {
this.position = i;
}
public void setPreViewUrl(String str) {
this.preViewUrl = str;
}
public void setState(int i) {
this.state = i;
}
public void setStep(int i) {
this.step = i;
}
}

View File

@@ -0,0 +1,41 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class DiyCommentModel {
private String content;
private long createTime;
private String nickName;
private String userImage;
public String getContent() {
return this.content;
}
public long getCreateTime() {
return this.createTime;
}
public String getNickName() {
return this.nickName;
}
public String getUserImage() {
return this.userImage;
}
public void setContent(String str) {
this.content = str;
}
public void setCreateTime(long j) {
this.createTime = j;
}
public void setNickName(String str) {
this.nickName = str;
}
public void setUserImage(String str) {
this.userImage = str;
}
}

View File

@@ -0,0 +1,387 @@
package com.ubt.jimu.diy.model;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes.dex */
public class DiyDetailsModel implements Serializable {
public static final long serialVersionUID = 1;
private String author;
private int buildNum;
private int commentNum;
private long createTime;
private int createUser;
private int creativeNum;
private String customModelId;
private String description;
private int designNum;
private boolean download;
private int funnyNum;
private int hasBuild;
private int hasCreative;
private int hasDesign;
private int hasFunny;
private int hasPraise;
private int hasProgram;
private Long id;
private int isDeleted;
private String locationLan;
private int praiseNum;
private int product;
private int programNum;
private int release;
private int starNum;
private ArrayList<DiyBuildStep> steps;
private String thumbnail;
private String title;
private int type;
private long updateTime;
private int updateUser;
private String videoUrl;
public static class DiyBuildStep implements Serializable {
public static final long serialVersionUID = 1;
private String description;
private long id;
private ArrayList<String> images;
private long modelId;
private String name;
private int position;
private String thumbnail;
private String videoUrl;
public String getDescription() {
return this.description;
}
public long getId() {
return this.id;
}
public ArrayList<String> getImages() {
return this.images;
}
public long getModelId() {
return this.modelId;
}
public String getName() {
return this.name;
}
public int getPosition() {
return this.position;
}
public String getThumbnail() {
return this.thumbnail;
}
public String getVideoUrl() {
return this.videoUrl;
}
public void setPosition(int i) {
this.position = i;
}
}
public DiyDetailsModel(boolean z, Long l, String str, int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, int i10, long j, long j2, int i11, int i12, String str2, String str3, String str4, String str5, int i13, String str6, int i14, int i15, int i16, int i17, int i18, int i19, int i20, String str7, ArrayList<DiyBuildStep> arrayList) {
this.download = z;
this.id = l;
this.customModelId = str;
this.type = i;
this.commentNum = i2;
this.buildNum = i3;
this.creativeNum = i4;
this.designNum = i5;
this.funnyNum = i6;
this.praiseNum = i7;
this.programNum = i8;
this.starNum = i9;
this.release = i10;
this.createTime = j;
this.updateTime = j2;
this.createUser = i11;
this.updateUser = i12;
this.title = str2;
this.description = str3;
this.thumbnail = str4;
this.videoUrl = str5;
this.isDeleted = i13;
this.locationLan = str6;
this.product = i14;
this.hasBuild = i15;
this.hasCreative = i16;
this.hasDesign = i17;
this.hasFunny = i18;
this.hasPraise = i19;
this.hasProgram = i20;
this.author = str7;
this.steps = arrayList;
}
public static String parseNum(int i) {
return String.valueOf(i);
}
public String getAuthor() {
return this.author;
}
public int getBuildNum() {
return this.buildNum;
}
public int getCommentNum() {
return this.commentNum;
}
public long getCreateTime() {
return this.createTime;
}
public int getCreateUser() {
return this.createUser;
}
public int getCreativeNum() {
return this.creativeNum;
}
public String getCustomModelId() {
return this.customModelId;
}
public String getDescription() {
return this.description;
}
public int getDesignNum() {
return this.designNum;
}
public boolean getDownload() {
return this.download;
}
public int getFunnyNum() {
return this.funnyNum;
}
public int getHasBuild() {
return this.hasBuild;
}
public int getHasCreative() {
return this.hasCreative;
}
public int getHasDesign() {
return this.hasDesign;
}
public int getHasFunny() {
return this.hasFunny;
}
public int getHasPraise() {
return this.hasPraise;
}
public int getHasProgram() {
return this.hasProgram;
}
public Long getId() {
return this.id;
}
public int getIsDeleted() {
return this.isDeleted;
}
public String getLocationLan() {
return this.locationLan;
}
public int getPraiseNum() {
return this.praiseNum;
}
public int getProduct() {
return this.product;
}
public int getProgramNum() {
return this.programNum;
}
public int getRelease() {
return this.release;
}
public int getStarNum() {
return this.starNum;
}
public ArrayList<DiyBuildStep> getSteps() {
return this.steps;
}
public String getThumbnail() {
return this.thumbnail;
}
public String getTitle() {
return this.title;
}
public int getType() {
return this.type;
}
public long getUpdateTime() {
return this.updateTime;
}
public int getUpdateUser() {
return this.updateUser;
}
public String getVideoUrl() {
return this.videoUrl;
}
public void setAuthor(String str) {
this.author = str;
}
public void setBuildNum(int i) {
this.buildNum = i;
}
public void setCommentNum(int i) {
this.commentNum = i;
}
public void setCreateTime(long j) {
this.createTime = j;
}
public void setCreateUser(int i) {
this.createUser = i;
}
public void setCreativeNum(int i) {
this.creativeNum = i;
}
public void setCustomModelId(String str) {
this.customModelId = str;
}
public void setDescription(String str) {
this.description = str;
}
public void setDesignNum(int i) {
this.designNum = i;
}
public void setDownload(boolean z) {
this.download = z;
}
public void setFunnyNum(int i) {
this.funnyNum = i;
}
public void setHasBuild(int i) {
this.hasBuild = i;
}
public void setHasCreative(int i) {
this.hasCreative = i;
}
public void setHasDesign(int i) {
this.hasDesign = i;
}
public void setHasFunny(int i) {
this.hasFunny = i;
}
public void setHasPraise(int i) {
this.hasPraise = i;
}
public void setHasProgram(int i) {
this.hasProgram = i;
}
public void setId(Long l) {
this.id = l;
}
public void setIsDeleted(int i) {
this.isDeleted = i;
}
public void setLocationLan(String str) {
this.locationLan = str;
}
public void setPraiseNum(int i) {
this.praiseNum = i;
}
public void setProduct(int i) {
this.product = i;
}
public void setProgramNum(int i) {
this.programNum = i;
}
public void setRelease(int i) {
this.release = i;
}
public void setStarNum(int i) {
this.starNum = i;
}
public void setSteps(ArrayList<DiyBuildStep> arrayList) {
this.steps = arrayList;
}
public void setThumbnail(String str) {
this.thumbnail = str;
}
public void setTitle(String str) {
this.title = str;
}
public void setType(int i) {
this.type = i;
}
public void setUpdateTime(long j) {
this.updateTime = j;
}
public void setUpdateUser(int i) {
this.updateUser = i;
}
public void setVideoUrl(String str) {
this.videoUrl = str;
}
public DiyDetailsModel() {
}
}

View File

@@ -0,0 +1,81 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class DiyModel {
private long customModelCreatetime;
private String customModelId;
private Long id;
private String image;
private short star;
private String title;
private int type;
public DiyModel(Long l, int i, String str, String str2, short s, String str3, long j) {
this.id = l;
this.type = i;
this.title = str;
this.image = str2;
this.star = s;
this.customModelId = str3;
this.customModelCreatetime = j;
}
public long getCustomModelCreatetime() {
return this.customModelCreatetime;
}
public String getCustomModelId() {
return this.customModelId;
}
public Long getId() {
return this.id;
}
public String getImage() {
return this.image;
}
public short getStar() {
return this.star;
}
public String getTitle() {
return this.title;
}
public int getType() {
return this.type;
}
public void setCustomModelCreatetime(long j) {
this.customModelCreatetime = j;
}
public void setCustomModelId(String str) {
this.customModelId = str;
}
public void setId(Long l) {
this.id = l;
}
public void setImage(String str) {
this.image = str;
}
public void setStar(short s) {
this.star = s;
}
public void setTitle(String str) {
this.title = str;
}
public void setType(int i) {
this.type = i;
}
public DiyModel() {
}
}

View File

@@ -0,0 +1,86 @@
package com.ubt.jimu.diy.model;
import com.ubt.jimu.diy.DiyRobotFile;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes.dex */
public class DiyModelFile {
public static final String TYPE_BG = "bg";
public static final String TYPE_CONN = "conn";
public static final String TYPE_DESC = "desc";
private long createDate;
private String fileName;
private String fileType;
private String fileUrl;
private long id;
private int isDeleted;
private int modelId;
private String remark;
private long updateDate;
public static List<DiyRobotFile> getModelFiles(String str, List<DiyModelFile> list) {
ArrayList arrayList = new ArrayList();
if (list != null && list.size() != 0) {
for (DiyModelFile diyModelFile : list) {
DiyRobotFile diyRobotFile = new DiyRobotFile();
boolean equals = "conn".equals(diyModelFile.getFileType());
int i = DiyRobotFile.TYPE_MODEL;
if (equals) {
i = DiyRobotFile.TYPE_SERVO;
} else if (!"desc".equals(diyModelFile.getFileType()) && "bg".equals(diyModelFile.getFileType())) {
i = DiyRobotFile.TYPE_LOGO;
}
diyRobotFile.setFileType(i);
diyRobotFile.setFileUrl(diyModelFile.getFileUrl());
diyRobotFile.setFileName(diyModelFile.getFileName());
diyRobotFile.setDisplayName(diyModelFile.getFileName());
diyRobotFile.setContent("");
diyRobotFile.setRemark(diyModelFile.getRemark());
diyRobotFile.setServerModelId(diyModelFile.getModelId());
diyRobotFile.setCustomModelId(str);
diyRobotFile.setRemark(diyModelFile.getRemark());
diyRobotFile.setCreateDate(diyModelFile.getCreateDate());
diyRobotFile.setUpdateDate(diyModelFile.getUpdateDate());
arrayList.add(diyRobotFile);
}
}
return arrayList;
}
public long getCreateDate() {
return this.createDate;
}
public String getFileName() {
return this.fileName;
}
public String getFileType() {
return this.fileType;
}
public String getFileUrl() {
return this.fileUrl;
}
public long getId() {
return this.id;
}
public int getIsDeleted() {
return this.isDeleted;
}
public int getModelId() {
return this.modelId;
}
public String getRemark() {
return this.remark;
}
public long getUpdateDate() {
return this.updateDate;
}
}

View File

@@ -0,0 +1,65 @@
package com.ubt.jimu.diy.model;
import java.io.Serializable;
import java.util.Comparator;
import java.util.Objects;
/* loaded from: classes.dex */
public class DiyPartModel implements Comparator<DiyPartModel>, Serializable {
private int count;
private String imageUrl;
private String partName;
private String type;
@Override // java.util.Comparator
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || DiyPartModel.class != obj.getClass()) {
return false;
}
return Objects.equals(getPartName(), ((DiyPartModel) obj).getPartName());
}
public int getCount() {
return this.count;
}
public String getImageUrl() {
return this.imageUrl;
}
public String getPartName() {
return this.partName;
}
public String getType() {
return this.type;
}
public int hashCode() {
return getPartName().hashCode();
}
public void setCount(int i) {
this.count = i;
}
public void setImageUrl(String str) {
this.imageUrl = str;
}
public void setPartName(String str) {
this.partName = str;
}
public void setType(String str) {
this.type = str;
}
@Override // java.util.Comparator
public int compare(DiyPartModel diyPartModel, DiyPartModel diyPartModel2) {
return diyPartModel.getType().hashCode() == diyPartModel2.getType().hashCode() ? 0 : -1;
}
}

View File

@@ -0,0 +1,67 @@
package com.ubt.jimu.diy.model;
import com.ubt.jimu.diy.model.DiyDetailsModel;
/* loaded from: classes.dex */
public class DiyPreviewStep {
public static final int TYPE_ACTION = 201;
public static final int TYPE_BUILD = 101;
public static final int TYPE_BUILD_COMPLETE = 104;
public static final int TYPE_BUILD_PARTS = 102;
public static final int TYPE_BUILD_STEP = 103;
public static final int TYPE_PROGRAM = 301;
private DiyDetailsModel.DiyBuildStep data;
private String desc;
private int descRes;
private int stepType;
public DiyPreviewStep() {
}
public static int getTypeAction() {
return 201;
}
public static int getTypeBuild() {
return 101;
}
public static int getTypeBuildComplete() {
return 104;
}
public static int getTypeBuildParts() {
return 102;
}
public static int getTypeBuildStep() {
return 103;
}
public static int getTypeProgram() {
return TYPE_PROGRAM;
}
public DiyDetailsModel.DiyBuildStep getData() {
return this.data;
}
public String getDesc() {
return this.desc;
}
public int getDescRes() {
return this.descRes;
}
public int getStepType() {
return this.stepType;
}
public DiyPreviewStep(int i, String str, int i2, DiyDetailsModel.DiyBuildStep diyBuildStep) {
this.stepType = i;
this.desc = str;
this.descRes = i2;
this.data = diyBuildStep;
}
}

View File

@@ -0,0 +1,237 @@
package com.ubt.jimu.diy.model;
import android.text.TextUtils;
import com.ubt.jimu.diy.DiyRobotFile;
/* loaded from: classes.dex */
public class DiyProgramFile {
private String blocklyVersion;
private long createTime;
private String customModelId;
private String description;
private String file;
private long fileCreateTime;
private long fileId;
private long fileModifyTime;
private String group;
private Long id;
private String image;
private String isDefault;
private int isDeleted;
private String language;
private int modelId;
private String name;
private String remark;
private String type;
private long updateTime;
public DiyProgramFile(Long l, int i, String str, String str2, String str3, String str4, String str5, String str6, String str7, long j, long j2, long j3, long j4, String str8, int i2, long j5, String str9, String str10, String str11) {
this.id = l;
this.modelId = i;
this.name = str;
this.file = str2;
this.image = str3;
this.isDefault = str4;
this.description = str5;
this.type = str6;
this.blocklyVersion = str7;
this.fileCreateTime = j;
this.fileModifyTime = j2;
this.createTime = j3;
this.updateTime = j4;
this.remark = str8;
this.isDeleted = i2;
this.fileId = j5;
this.customModelId = str9;
this.group = str10;
this.language = str11;
}
public static DiyRobotFile getModelFile(String str, DiyProgramFile diyProgramFile) {
if (diyProgramFile == null) {
return null;
}
DiyRobotFile diyRobotFile = new DiyRobotFile();
diyRobotFile.setFileType(DiyRobotFile.TYPE_PROGRAM);
diyRobotFile.setFileUrl(diyProgramFile.getFile());
diyRobotFile.setFileName(diyProgramFile.getBlocklyProjectXmlName());
diyRobotFile.setDisplayName(diyProgramFile.getName());
diyRobotFile.setContent("");
diyRobotFile.setRemark(diyProgramFile.getRemark());
diyRobotFile.setServerModelId(diyProgramFile.getModelId());
diyRobotFile.setCustomModelId(str);
diyRobotFile.setRemark(diyProgramFile.getRemark());
diyRobotFile.setCreateDate(diyProgramFile.getCreateTime());
diyRobotFile.setUpdateDate(diyProgramFile.getUpdateTime());
return diyRobotFile;
}
public String getBlocklyProjectXmlId() {
String blocklyProjectXmlName = getBlocklyProjectXmlName();
return (TextUtils.isEmpty(blocklyProjectXmlName) || !blocklyProjectXmlName.contains(".")) ? blocklyProjectXmlName : blocklyProjectXmlName.substring(0, blocklyProjectXmlName.indexOf("."));
}
public String getBlocklyProjectXmlName() {
if (TextUtils.isEmpty(this.file)) {
return "";
}
String str = this.file;
String substring = str.substring(str.lastIndexOf("/") + 1);
return substring.contains("?") ? substring.substring(0, substring.indexOf("?")) : substring;
}
public String getBlocklyVersion() {
return this.blocklyVersion;
}
public long getCreateTime() {
return this.createTime;
}
public String getCustomModelId() {
return this.customModelId;
}
public String getDescription() {
return this.description;
}
public String getFile() {
return this.file;
}
public long getFileCreateTime() {
return this.fileCreateTime;
}
public long getFileId() {
return this.fileId;
}
public long getFileModifyTime() {
return this.fileModifyTime;
}
public String getGroup() {
return this.group;
}
public Long getId() {
return this.id;
}
public String getImage() {
return this.image;
}
public String getIsDefault() {
return this.isDefault;
}
public int getIsDeleted() {
return this.isDeleted;
}
public String getLanguage() {
return this.language;
}
public int getModelId() {
return this.modelId;
}
public String getName() {
return this.name;
}
public String getRemark() {
return this.remark;
}
public String getType() {
return this.type;
}
public long getUpdateTime() {
return this.updateTime;
}
public void setBlocklyVersion(String str) {
this.blocklyVersion = str;
}
public void setCreateTime(long j) {
this.createTime = j;
}
public void setCustomModelId(String str) {
this.customModelId = str;
}
public void setDescription(String str) {
this.description = str;
}
public void setFile(String str) {
this.file = str;
}
public void setFileCreateTime(long j) {
this.fileCreateTime = j;
}
public void setFileId(long j) {
this.fileId = j;
}
public void setFileModifyTime(long j) {
this.fileModifyTime = j;
}
public void setGroup(String str) {
this.group = str;
}
public void setId(Long l) {
this.id = l;
}
public void setImage(String str) {
this.image = str;
}
public void setIsDefault(String str) {
this.isDefault = str;
}
public void setIsDeleted(int i) {
this.isDeleted = i;
}
public void setLanguage(String str) {
this.language = str;
}
public void setModelId(int i) {
this.modelId = i;
}
public void setName(String str) {
this.name = str;
}
public void setRemark(String str) {
this.remark = str;
}
public void setType(String str) {
this.type = str;
}
public void setUpdateTime(long j) {
this.updateTime = j;
}
public DiyProgramFile() {
}
}

View File

@@ -0,0 +1,50 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class FansModel {
private int completeState;
private String itemName;
private int lock;
private String pName;
private String rightNext;
public int getCompleteState() {
return this.completeState;
}
public String getItemName() {
return this.itemName;
}
public int getLock() {
return this.lock;
}
public String getRightNext() {
return this.rightNext;
}
public String getpName() {
return this.pName;
}
public void setCompleteState(int i) {
this.completeState = i;
}
public void setItemName(String str) {
this.itemName = str;
}
public void setLock(int i) {
this.lock = i;
}
public void setRightNext(String str) {
this.rightNext = str;
}
public void setpName(String str) {
this.pName = str;
}
}

View File

@@ -0,0 +1,41 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class FinalModel {
private int dierection = 1;
private boolean isAdd;
private boolean isSelected;
private String picPath;
public int getDierection() {
return this.dierection;
}
public String getPicPath() {
return this.picPath;
}
public boolean isAdd() {
return this.isAdd;
}
public boolean isSelected() {
return this.isSelected;
}
public void setAdd(boolean z) {
this.isAdd = z;
}
public void setDierection(int i) {
this.dierection = i;
}
public void setPicPath(String str) {
this.picPath = str;
}
public void setSelected(boolean z) {
this.isSelected = z;
}
}

View File

@@ -0,0 +1,115 @@
package com.ubt.jimu.diy.model;
import java.util.List;
/* loaded from: classes.dex */
public class PartModel {
private List<Integer> DigitalTube;
private List<Integer> Gyro;
private List<Integer> Infrared;
private List<Integer> Light;
private List<Integer> Speaker;
private List<Integer> Touch;
private List<Integer> Ultrasonic;
private int blueState;
private String boardType;
private List<Integer> motor;
private int result;
private List<Integer> servo;
public int getBlueState() {
return this.blueState;
}
public String getBoardType() {
return this.boardType;
}
public List<Integer> getDigitalTube() {
return this.DigitalTube;
}
public List<Integer> getGyro() {
return this.Gyro;
}
public List<Integer> getInfrared() {
return this.Infrared;
}
public List<Integer> getLight() {
return this.Light;
}
public List<Integer> getMotor() {
return this.motor;
}
public int getResult() {
return this.result;
}
public List<Integer> getServo() {
return this.servo;
}
public List<Integer> getSpeaker() {
return this.Speaker;
}
public List<Integer> getTouch() {
return this.Touch;
}
public List<Integer> getUltrasonic() {
return this.Ultrasonic;
}
public void setBlueState(int i) {
this.blueState = i;
}
public void setBoardType(String str) {
this.boardType = str;
}
public void setDigitalTube(List<Integer> list) {
this.DigitalTube = list;
}
public void setGyro(List<Integer> list) {
this.Gyro = list;
}
public void setInfrared(List<Integer> list) {
this.Infrared = list;
}
public void setLight(List<Integer> list) {
this.Light = list;
}
public void setMotor(List<Integer> list) {
this.motor = list;
}
public void setResult(int i) {
this.result = i;
}
public void setServo(List<Integer> list) {
this.servo = list;
}
public void setSpeaker(List<Integer> list) {
this.Speaker = list;
}
public void setTouch(List<Integer> list) {
this.Touch = list;
}
public void setUltrasonic(List<Integer> list) {
this.Ultrasonic = list;
}
}

View File

@@ -0,0 +1,15 @@
package com.ubt.jimu.diy.model;
/* loaded from: classes.dex */
public class PraiseModel {
private int code;
private String message;
public int getCode() {
return this.code;
}
public String getMessage() {
return this.message;
}
}