This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/src/nis/nms/domains/NodeBoxTableVo.java

104 lines
1.8 KiB
Java
Raw Normal View History

2018-09-27 16:21:05 +08:00
package nis.nms.domains;
public class NodeBoxTableVo implements java.io.Serializable{
private static final long serialVersionUID = 1L;
private String descinfo;
private String ispn;
private Long boxUType;
private String roomIspn;
private Long roomRowPosition;
private Long roomColPosition;
//导入结点时,数据错误提示信息
private String showError;
public NodeBoxTableVo() {
}
/** full constructor */
public NodeBoxTableVo(String descinfo, String ispn,
Long boxUType, String roomIspn, Long roomRowPosition,
Long roomColPosition,String showError) {
super();
this.descinfo = descinfo;
this.ispn = ispn;
this.boxUType = boxUType;
this.roomIspn = roomIspn;
this.roomRowPosition = roomRowPosition;
this.roomColPosition = roomColPosition;
this.showError = showError;
}
public String getDescinfo() {
return descinfo;
}
public void setDescinfo(String descinfo) {
this.descinfo = descinfo;
}
public String getIspn() {
return ispn;
}
public void setIspn(String ispn) {
this.ispn = ispn;
}
public Long getBoxUType() {
return boxUType;
}
public void setBoxUType(Long boxUType) {
this.boxUType = boxUType;
}
public String getRoomIspn() {
return roomIspn;
}
public void setRoomIspn(String roomIspn) {
this.roomIspn = roomIspn;
}
public Long getRoomRowPosition() {
return roomRowPosition;
}
public void setRoomRowPosition(Long roomRowPosition) {
this.roomRowPosition = roomRowPosition;
}
public Long getRoomColPosition() {
return roomColPosition;
}
public void setRoomColPosition(Long roomColPosition) {
this.roomColPosition = roomColPosition;
}
public String getShowError() {
return showError;
}
public void setShowError(String showError) {
this.showError = showError;
}
}