Initial commit
This commit is contained in:
50
sources/com/ubt/jimu/diy/model/FansModel.java
Normal file
50
sources/com/ubt/jimu/diy/model/FansModel.java
Normal file
@@ -0,0 +1,50 @@
|
||||
package com.ubt.jimu.diy.model;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class FansModel {
|
||||
private int completeState;
|
||||
private String itemName;
|
||||
private int lock;
|
||||
private String pName;
|
||||
private String rightNext;
|
||||
|
||||
public int getCompleteState() {
|
||||
return this.completeState;
|
||||
}
|
||||
|
||||
public String getItemName() {
|
||||
return this.itemName;
|
||||
}
|
||||
|
||||
public int getLock() {
|
||||
return this.lock;
|
||||
}
|
||||
|
||||
public String getRightNext() {
|
||||
return this.rightNext;
|
||||
}
|
||||
|
||||
public String getpName() {
|
||||
return this.pName;
|
||||
}
|
||||
|
||||
public void setCompleteState(int i) {
|
||||
this.completeState = i;
|
||||
}
|
||||
|
||||
public void setItemName(String str) {
|
||||
this.itemName = str;
|
||||
}
|
||||
|
||||
public void setLock(int i) {
|
||||
this.lock = i;
|
||||
}
|
||||
|
||||
public void setRightNext(String str) {
|
||||
this.rightNext = str;
|
||||
}
|
||||
|
||||
public void setpName(String str) {
|
||||
this.pName = str;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user