75 lines
1.5 KiB
Java
75 lines
1.5 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class PartFileInfo implements Serializable {
|
|
private static final long serialVersionUID = 1;
|
|
private String androidFilePath;
|
|
private String appType;
|
|
private Long id;
|
|
private long modelId;
|
|
private String name;
|
|
private long updateTime;
|
|
|
|
public PartFileInfo(Long l, String str, long j, String str2, long j2, String str3) {
|
|
this.id = l;
|
|
this.name = str;
|
|
this.modelId = j;
|
|
this.androidFilePath = str2;
|
|
this.updateTime = j2;
|
|
this.appType = str3;
|
|
}
|
|
|
|
public String getAndroidFilePath() {
|
|
return this.androidFilePath;
|
|
}
|
|
|
|
public String getAppType() {
|
|
return this.appType;
|
|
}
|
|
|
|
public Long getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public long getModelId() {
|
|
return this.modelId;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public long getUpdateTime() {
|
|
return this.updateTime;
|
|
}
|
|
|
|
public void setAndroidFilePath(String str) {
|
|
this.androidFilePath = str;
|
|
}
|
|
|
|
public void setAppType(String str) {
|
|
this.appType = str;
|
|
}
|
|
|
|
public void setId(Long l) {
|
|
this.id = l;
|
|
}
|
|
|
|
public void setModelId(long j) {
|
|
this.modelId = j;
|
|
}
|
|
|
|
public void setName(String str) {
|
|
this.name = str;
|
|
}
|
|
|
|
public void setUpdateTime(long j) {
|
|
this.updateTime = j;
|
|
}
|
|
|
|
public PartFileInfo() {
|
|
}
|
|
}
|