1.4.0521 优化开机动画 控制主页控件显示
This commit is contained in:
99
app/src/main/java/com/aoleyun/sn/bean/AppSettings.java
Normal file
99
app/src/main/java/com/aoleyun/sn/bean/AppSettings.java
Normal file
@@ -0,0 +1,99 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AppSettings implements Serializable {
|
||||
private static final long serialVersionUID = -3501100183295519224L;
|
||||
|
||||
// APP图标
|
||||
String app_icon;
|
||||
// 小程序二维码
|
||||
String mini_qrcode;
|
||||
// 日志功能开关 1 开 0 关
|
||||
int logs_control;
|
||||
// 定义批次名称 1 开启 0 关闭
|
||||
int custom_batch_control;
|
||||
//批次名称
|
||||
String custom_batch_name;
|
||||
// 定义班级开关 1 开 0 关
|
||||
int custom_class_control;
|
||||
//班级名称
|
||||
String custom_class_name;
|
||||
// 定义学号开关 1 开 0 关
|
||||
int custom_number_control;
|
||||
//学号名称
|
||||
String custom_number_name;
|
||||
|
||||
|
||||
public String getApp_icon() {
|
||||
return app_icon;
|
||||
}
|
||||
|
||||
public void setApp_icon(String app_icon) {
|
||||
this.app_icon = app_icon;
|
||||
}
|
||||
|
||||
public String getMini_qrcode() {
|
||||
return mini_qrcode;
|
||||
}
|
||||
|
||||
public void setMini_qrcode(String mini_qrcode) {
|
||||
this.mini_qrcode = mini_qrcode;
|
||||
}
|
||||
|
||||
public int getLogs_control() {
|
||||
return logs_control;
|
||||
}
|
||||
|
||||
public void setLogs_control(int logs_control) {
|
||||
this.logs_control = logs_control;
|
||||
}
|
||||
|
||||
public int getCustom_batch_control() {
|
||||
return custom_batch_control;
|
||||
}
|
||||
|
||||
public void setCustom_batch_control(int custom_batch_control) {
|
||||
this.custom_batch_control = custom_batch_control;
|
||||
}
|
||||
|
||||
public String getCustom_batch_name() {
|
||||
return custom_batch_name;
|
||||
}
|
||||
|
||||
public void setCustom_batch_name(String custom_batch_name) {
|
||||
this.custom_batch_name = custom_batch_name;
|
||||
}
|
||||
|
||||
public int getCustom_class_control() {
|
||||
return custom_class_control;
|
||||
}
|
||||
|
||||
public void setCustom_class_control(int custom_class_control) {
|
||||
this.custom_class_control = custom_class_control;
|
||||
}
|
||||
|
||||
public String getCustom_class_name() {
|
||||
return custom_class_name;
|
||||
}
|
||||
|
||||
public void setCustom_class_name(String custom_class_name) {
|
||||
this.custom_class_name = custom_class_name;
|
||||
}
|
||||
|
||||
public int getCustom_number_control() {
|
||||
return custom_number_control;
|
||||
}
|
||||
|
||||
public void setCustom_number_control(int custom_number_control) {
|
||||
this.custom_number_control = custom_number_control;
|
||||
}
|
||||
|
||||
public String getCustom_number_name() {
|
||||
return custom_number_name;
|
||||
}
|
||||
|
||||
public void setCustom_number_name(String custom_number_name) {
|
||||
this.custom_number_name = custom_number_name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user