46 lines
880 B
Java
46 lines
880 B
Java
package com.ubt.jimu.diy.model;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class BuildCompletedImage {
|
|
private long createDate;
|
|
private long id;
|
|
private String imageName;
|
|
private int imageOrder;
|
|
private String imageUrl;
|
|
private int isDeleted;
|
|
private String modelId;
|
|
private long updateDate;
|
|
|
|
public long getCreateDate() {
|
|
return this.createDate;
|
|
}
|
|
|
|
public long getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getImageName() {
|
|
return this.imageName;
|
|
}
|
|
|
|
public int getImageOrder() {
|
|
return this.imageOrder;
|
|
}
|
|
|
|
public String getImageUrl() {
|
|
return this.imageUrl;
|
|
}
|
|
|
|
public int getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public String getModelId() {
|
|
return this.modelId;
|
|
}
|
|
|
|
public long getUpdateDate() {
|
|
return this.updateDate;
|
|
}
|
|
}
|