version:6.4.6
fix: update:增加护眼模式,增加静默拍照,增加时间管控和专注模式
This commit is contained in:
62
app/src/main/java/com/aoleyun/sn/bean/SnSetting.java
Normal file
62
app/src/main/java/com/aoleyun/sn/bean/SnSetting.java
Normal file
@@ -0,0 +1,62 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SnSetting implements Serializable {
|
||||
private static final long serialVersionUID = -1984636328774813651L;
|
||||
|
||||
int id;
|
||||
int is_timecontrol;
|
||||
String timecontrol_start;
|
||||
String timecontrol_end;
|
||||
int is_storeinstall;
|
||||
int is_usb;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getIs_timecontrol() {
|
||||
return is_timecontrol;
|
||||
}
|
||||
|
||||
public void setIs_timecontrol(int is_timecontrol) {
|
||||
this.is_timecontrol = is_timecontrol;
|
||||
}
|
||||
|
||||
public String getTimecontrol_start() {
|
||||
return timecontrol_start;
|
||||
}
|
||||
|
||||
public void setTimecontrol_start(String timecontrol_start) {
|
||||
this.timecontrol_start = timecontrol_start;
|
||||
}
|
||||
|
||||
public String getTimecontrol_end() {
|
||||
return timecontrol_end;
|
||||
}
|
||||
|
||||
public void setTimecontrol_end(String timecontrol_end) {
|
||||
this.timecontrol_end = timecontrol_end;
|
||||
}
|
||||
|
||||
public int getIs_storeinstall() {
|
||||
return is_storeinstall;
|
||||
}
|
||||
|
||||
public void setIs_storeinstall(int is_storeinstall) {
|
||||
this.is_storeinstall = is_storeinstall;
|
||||
}
|
||||
|
||||
public int getIs_usb() {
|
||||
return is_usb;
|
||||
}
|
||||
|
||||
public void setIs_usb(int is_usb) {
|
||||
this.is_usb = is_usb;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user