新增isp运营商查询方法

This commit is contained in:
zhanghongqing
2019-01-17 10:18:15 +08:00
parent 9e8316603a
commit c410dd9c90
5 changed files with 131 additions and 1 deletions

View File

@@ -0,0 +1,72 @@
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;
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;
}
}