|
|
|
@ -1,19 +1,60 @@
|
|
|
|
package de.tvo.database.tables.NLCONNECT;
|
|
|
|
package de.tvo.database.tables.NLCONNECT;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
import java.math.BigInteger;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import jakarta.persistence.Column;
|
|
|
|
|
|
|
|
import jakarta.persistence.GeneratedValue;
|
|
|
|
|
|
|
|
import jakarta.persistence.GenerationType;
|
|
|
|
|
|
|
|
import jakarta.persistence.Id;
|
|
|
|
|
|
|
|
|
|
|
|
public class Nlconnect implements Serializable {
|
|
|
|
public class Nlconnect implements Serializable {
|
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
private Integer m_ncid = null;
|
|
|
|
@Id
|
|
|
|
private String m_nchostname = null;
|
|
|
|
@GeneratedValue(strategy=GenerationType.IDENTITY)
|
|
|
|
private String m_ncipadress = null;
|
|
|
|
@Column(unique=true, nullable=false)
|
|
|
|
private Integer m_ncport = null;
|
|
|
|
private BigInteger ncid = null;
|
|
|
|
private String m_nctoken = null;
|
|
|
|
public BigInteger getNcid() { return ncid; }
|
|
|
|
private String m_nctype = null;
|
|
|
|
public void setNcid(final BigInteger ncid) { this.ncid = ncid; }
|
|
|
|
private Integer m_nccountpanel = null;
|
|
|
|
|
|
|
|
private Integer m_ncactiv = 0;
|
|
|
|
@Column(length=255, nullable = false)
|
|
|
|
|
|
|
|
private String nchostname = null;
|
|
|
|
|
|
|
|
public String getNchostname() { return nchostname; }
|
|
|
|
|
|
|
|
public void setNchostname(String nchostname) { this.nchostname = nchostname; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(length=16, nullable = false)
|
|
|
|
|
|
|
|
private String ncipadress = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(precision=9, nullable = false)
|
|
|
|
|
|
|
|
private Integer ncport = null;
|
|
|
|
|
|
|
|
public Integer getNcport() { return ncport; }
|
|
|
|
|
|
|
|
public void setNcport(Integer ncport) { this.ncport = ncport; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(length=50, nullable = false)
|
|
|
|
|
|
|
|
private String nctoken = null;
|
|
|
|
|
|
|
|
public String getNctoken() { return nctoken; }
|
|
|
|
|
|
|
|
public void setNctoken(String nctoken) { this.nctoken = nctoken; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(length=40, nullable = false)
|
|
|
|
|
|
|
|
private String nctype = null;
|
|
|
|
|
|
|
|
public String getNctype() { return nctype; }
|
|
|
|
|
|
|
|
public void setNctype(String nctype) { this.nctype = nctype; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(precision=9, nullable = false)
|
|
|
|
|
|
|
|
private Integer nccountpanel = null;
|
|
|
|
|
|
|
|
public Integer getNccountpanel() { return nccountpanel; }
|
|
|
|
|
|
|
|
public void setNccountpanel(Integer nccountpanel) { this.nccountpanel = nccountpanel; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(precision=9, nullable = false)
|
|
|
|
|
|
|
|
private Integer ncactiv = null;
|
|
|
|
|
|
|
|
public Integer getNcactiv() { return ncactiv; }
|
|
|
|
|
|
|
|
public void setNcactiv(Integer ncactiv) { this.ncactiv = ncactiv; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Nlconnect() {
|
|
|
|
public Nlconnect() {
|
|
|
|
|