79 lines
1.9 KiB
Java
79 lines
1.9 KiB
Java
package com.nis.domain.dashboard;
|
||
|
||
import java.io.Serializable;
|
||
import java.util.Date;
|
||
|
||
public class SysIspInfo implements Serializable {
|
||
|
||
/**
|
||
*
|
||
*/
|
||
private static final long serialVersionUID = 2642565275696732948L;
|
||
private Long id;
|
||
private String ispName;// 通信运营商名称,
|
||
private Integer ispCode;// 通信运营商编码,
|
||
private String businessTypeName;//业务类型名称,
|
||
private Integer businessTypeCode;//业务类型编码,
|
||
private String ispKeyName;//运营商唯一标识名称,例如ktel-mxpe:1001,
|
||
private Integer ispKeyCode;// 运营商唯一标识编码,
|
||
private Date createTime;
|
||
|
||
private String ispNum; // 出入口跟设备号拼接
|
||
|
||
public Long getId() {
|
||
return id;
|
||
}
|
||
public void setId(Long id) {
|
||
this.id = id;
|
||
}
|
||
public String getIspName() {
|
||
return ispName;
|
||
}
|
||
public void setIspName(String ispName) {
|
||
this.ispName = ispName;
|
||
}
|
||
public Integer getIspCode() {
|
||
return ispCode;
|
||
}
|
||
public void setIspCode(Integer ispCode) {
|
||
this.ispCode = ispCode;
|
||
}
|
||
public String getBusinessTypeName() {
|
||
return businessTypeName;
|
||
}
|
||
public void setBusinessTypeName(String businessTypeName) {
|
||
this.businessTypeName = businessTypeName;
|
||
}
|
||
public Integer getBusinessTypeCode() {
|
||
return businessTypeCode;
|
||
}
|
||
public void setBusinessTypeCode(Integer businessTypeCode) {
|
||
this.businessTypeCode = businessTypeCode;
|
||
}
|
||
public String getIspKeyName() {
|
||
return ispKeyName;
|
||
}
|
||
public void setIspKeyName(String ispKeyName) {
|
||
this.ispKeyName = ispKeyName;
|
||
}
|
||
public Integer getIspKeyCode() {
|
||
return ispKeyCode;
|
||
}
|
||
public void setIspKeyCode(Integer ispKeyCode) {
|
||
this.ispKeyCode = ispKeyCode;
|
||
}
|
||
public Date getCreateTime() {
|
||
return createTime;
|
||
}
|
||
public void setCreateTime(Date createTime) {
|
||
this.createTime = createTime;
|
||
}
|
||
public String getIspNum() {
|
||
return ispNum;
|
||
}
|
||
public void setIspNum(String ispNum) {
|
||
this.ispNum = ispNum;
|
||
}
|
||
|
||
}
|