package com.mode;
|
|
import java.util.Date;
|
|
public class Device_Inf {
|
|
public int system_id; // 'ϵͳid',
|
public String system_name; // 'ϵͳÃû³Æ',
|
public int device_id; // 'É豸id',
|
public String device_name; // 'É豸Ãû³Æ',
|
public String device_ip; // 'É豸ip',
|
public int maint_cycle; // 'ά»¤ÖÜÆÚ',
|
public Date use_starttime; // '¿ªÊ¼Ê¹ÓÃʱ¼ä',
|
public int user_id; // '¼ÈëÓû§',
|
|
|
public int getSystem_id() {
|
return system_id;
|
}
|
public String getSystem_name() {
|
return system_name;
|
}
|
public int getDevice_id() {
|
return device_id;
|
}
|
public String getDevice_name() {
|
return device_name;
|
}
|
public String getDevice_ip() {
|
return device_ip;
|
}
|
public int getMaint_cycle() {
|
return maint_cycle;
|
}
|
public Date getUse_starttime() {
|
return use_starttime;
|
}
|
public int getUser_id() {
|
return user_id;
|
}
|
public void setSystem_id(int system_id) {
|
this.system_id = system_id;
|
}
|
public void setSystem_name(String system_name) {
|
this.system_name = system_name;
|
}
|
public void setDevice_id(int device_id) {
|
this.device_id = device_id;
|
}
|
public void setDevice_name(String device_name) {
|
this.device_name = device_name;
|
}
|
public void setDevice_ip(String device_ip) {
|
this.device_ip = device_ip;
|
}
|
public void setMaint_cycle(int maint_cycle) {
|
this.maint_cycle = maint_cycle;
|
}
|
public void setUse_starttime(Date use_starttime) {
|
this.use_starttime = use_starttime;
|
}
|
public void setUser_id(int user_id) {
|
this.user_id = user_id;
|
}
|
@Override
|
public String toString() {
|
return "Device_Inf [system_id=" + system_id + ", system_name=" + system_name + ", device_id=" + device_id
|
+ ", device_name=" + device_name + ", device_ip=" + device_ip + ", maint_cycle=" + maint_cycle
|
+ ", use_starttime=" + use_starttime + ", user_id=" + user_id + "]";
|
}
|
}
|