42 lines
783 B
Java
42 lines
783 B
Java
package com.ubt.jimu.diy.model;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class FinalModel {
|
|
private int dierection = 1;
|
|
private boolean isAdd;
|
|
private boolean isSelected;
|
|
private String picPath;
|
|
|
|
public int getDierection() {
|
|
return this.dierection;
|
|
}
|
|
|
|
public String getPicPath() {
|
|
return this.picPath;
|
|
}
|
|
|
|
public boolean isAdd() {
|
|
return this.isAdd;
|
|
}
|
|
|
|
public boolean isSelected() {
|
|
return this.isSelected;
|
|
}
|
|
|
|
public void setAdd(boolean z) {
|
|
this.isAdd = z;
|
|
}
|
|
|
|
public void setDierection(int i) {
|
|
this.dierection = i;
|
|
}
|
|
|
|
public void setPicPath(String str) {
|
|
this.picPath = str;
|
|
}
|
|
|
|
public void setSelected(boolean z) {
|
|
this.isSelected = z;
|
|
}
|
|
}
|