新增isp运营商查询方法
This commit is contained in:
72
src/main/java/com/nis/domain/dashboard/SysIspInfo.java
Normal file
72
src/main/java/com/nis/domain/dashboard/SysIspInfo.java
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user