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
k18-ntcs-web-ntc/src/main/java/com/nis/domain/dashboard/SysIspInfo.java
zhanghongqing a437417da1 通联关系日志展示运营商,修复排序功能
(cherry picked from commit 698fd13a65)
2019-01-21 23:31:36 +08:00

79 lines
1.9 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}