package com.ubt.jimu.blockly.bean; /* loaded from: classes.dex */ public class JimuSoundParameter { private String audioId; private String description; private String duration; private String fileUrl; private int id; private int isDeleted; private long lastUploadTime; private String type; private String userId; public String getAudioId() { return this.audioId; } public String getDescription() { return this.description; } public String getDuration() { return this.duration; } public String getFileUrl() { return this.fileUrl; } public int getId() { return this.id; } public int getIsDeleted() { return this.isDeleted; } public long getLastUploadTime() { return this.lastUploadTime; } public String getType() { return this.type; } public String getUserId() { return this.userId; } public void setAudioId(String str) { this.audioId = str; } public void setDescription(String str) { this.description = str; } public void setDuration(String str) { this.duration = str; } public void setFileUrl(String str) { this.fileUrl = str; } public void setId(int i) { this.id = i; } public void setIsDeleted(int i) { this.isDeleted = i; } public void setLastUploadTime(long j) { this.lastUploadTime = j; } public void setType(String str) { this.type = str; } public void setUserId(String str) { this.userId = str; } }