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 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 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 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 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 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 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() { } }