package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Device_inf implements Serializable{
|
private int num;
|
private String dev_name;
|
private int dev_id;
|
private int sys_type;
|
private String sys_name;
|
private int analog_count;
|
private int switch_count;
|
private int state_count;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public String getDev_name() {
|
return dev_name;
|
}
|
public void setDev_name(String dev_name) {
|
this.dev_name = dev_name;
|
}
|
public int getDev_id() {
|
return dev_id;
|
}
|
public void setDev_id(int dev_id) {
|
this.dev_id = dev_id;
|
}
|
public int getSys_type() {
|
return sys_type;
|
}
|
public void setSys_type(int sys_type) {
|
this.sys_type = sys_type;
|
}
|
public String getSys_name() {
|
return sys_name;
|
}
|
public void setSys_name(String sys_name) {
|
this.sys_name = sys_name;
|
}
|
public int getAnalog_count() {
|
return analog_count;
|
}
|
public void setAnalog_count(int analog_count) {
|
this.analog_count = analog_count;
|
}
|
public int getSwitch_count() {
|
return switch_count;
|
}
|
public void setSwitch_count(int switch_count) {
|
this.switch_count = switch_count;
|
}
|
public int getState_count() {
|
return state_count;
|
}
|
public void setState_count(int state_count) {
|
this.state_count = state_count;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Devdata_rt [num=" + num + ", dev_name=" + dev_name
|
+ ", dev_id=" + dev_id + ", sys_type=" + sys_type
|
+ ", sys_name=" + sys_name + ", analog_count=" + analog_count
|
+ ", switch_count=" + switch_count + ", state_count="
|
+ state_count + ", note=" + note + "]";
|
}
|
|
}
|