34 lines
663 B
Java
34 lines
663 B
Java
package com.ubt.jimu.user.feedback;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class PostMediaBean implements Serializable {
|
|
private String fileName;
|
|
private String imageUrl;
|
|
|
|
public PostMediaBean() {
|
|
}
|
|
|
|
public String geImageUrl() {
|
|
return this.imageUrl;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return this.fileName;
|
|
}
|
|
|
|
public void setFileName(String str) {
|
|
this.fileName = str;
|
|
}
|
|
|
|
public void setImageUrl(String str) {
|
|
this.imageUrl = str;
|
|
}
|
|
|
|
public PostMediaBean(String str, String str2) {
|
|
this.fileName = str;
|
|
this.imageUrl = str2;
|
|
}
|
|
}
|