118 lines
2.5 KiB
Java
118 lines
2.5 KiB
Java
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;
|
|
int is_bluetooth_file;
|
|
int is_developer;
|
|
int is_restore;
|
|
int is_topbar;
|
|
int is_bottombar;
|
|
int is_memory_card;
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
public int getIs_bluetooth_file() {
|
|
return is_bluetooth_file;
|
|
}
|
|
|
|
public void setIs_bluetooth_file(int is_bluetooth_file) {
|
|
this.is_bluetooth_file = is_bluetooth_file;
|
|
}
|
|
|
|
public int getIs_developer() {
|
|
return is_developer;
|
|
}
|
|
|
|
public void setIs_developer(int is_developer) {
|
|
this.is_developer = is_developer;
|
|
}
|
|
|
|
public int getIs_restore() {
|
|
return is_restore;
|
|
}
|
|
|
|
public void setIs_restore(int is_restore) {
|
|
this.is_restore = is_restore;
|
|
}
|
|
|
|
public int getIs_topbar() {
|
|
return is_topbar;
|
|
}
|
|
|
|
public void setIs_topbar(int is_topbar) {
|
|
this.is_topbar = is_topbar;
|
|
}
|
|
|
|
public int getIs_bottombar() {
|
|
return is_bottombar;
|
|
}
|
|
|
|
public void setIs_bottombar(int is_bottombar) {
|
|
this.is_bottombar = is_bottombar;
|
|
}
|
|
|
|
public int getIs_memory_card() {
|
|
return is_memory_card;
|
|
}
|
|
|
|
public void setIs_memory_card(int is_memory_card) {
|
|
this.is_memory_card = is_memory_card;
|
|
}
|
|
}
|