version:1.8.7

fix:
update:去掉butterknife
This commit is contained in:
2024-08-28 15:24:57 +08:00
parent eea0350ac4
commit 7ba8603363
124 changed files with 10906 additions and 10823 deletions

View File

@@ -0,0 +1,26 @@
package com.uiui.zyos.bean;
import java.io.Serializable;
public class GuideBean implements Serializable {
private static final long serialVersionUID = 603876094734315379L;
String type;
String file;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
}