135 lines
2.9 KiB
Java
135 lines
2.9 KiB
Java
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;
|
|
}
|
|
}
|