44 lines
707 B
Java
44 lines
707 B
Java
package com.ubt.jimu.upload;
|
|
|
|
import com.ubt.jimu.base.entities.PublishType;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class UploadRequest {
|
|
private int a;
|
|
private String b;
|
|
private String c;
|
|
private PublishType d;
|
|
|
|
public void a(PublishType publishType) {
|
|
this.d = publishType;
|
|
}
|
|
|
|
public String b() {
|
|
return this.c;
|
|
}
|
|
|
|
public int c() {
|
|
return this.a;
|
|
}
|
|
|
|
public PublishType d() {
|
|
return this.d;
|
|
}
|
|
|
|
public void a(int i) {
|
|
this.a = i;
|
|
}
|
|
|
|
public void b(String str) {
|
|
this.c = str;
|
|
}
|
|
|
|
public String a() {
|
|
return this.b;
|
|
}
|
|
|
|
public void a(String str) {
|
|
this.b = str;
|
|
}
|
|
}
|