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