329 lines
6.2 KiB
Java
329 lines
6.2 KiB
Java
package model;
|
|
|
|
import java.io.Serializable;
|
|
import javax.persistence.*;
|
|
|
|
|
|
/**
|
|
* The persistent class for the tseaiad01 database table.
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name="tseaiad01")
|
|
@NamedQuery(name="Tseaiad01.findAll", query="SELECT t FROM Tseaiad01 t")
|
|
public class Tseaiad01 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Id
|
|
@Column(unique=true, nullable=false, length=50)
|
|
private String adptrbzwkgroupname;
|
|
|
|
@Column(length=200)
|
|
private String adptrbzwkgroupdesc;
|
|
|
|
@Column(length=3)
|
|
private String adptrcd;
|
|
|
|
@Column(length=20)
|
|
private String adptrinsticode;
|
|
|
|
@Column(length=1)
|
|
private String adptriodstcd;
|
|
|
|
@Column(length=3)
|
|
private String adptrmsgdstcd;
|
|
|
|
@Column(length=1)
|
|
private String adptrmsgptrncd;
|
|
|
|
@Column(length=50)
|
|
private String adptrnickname;
|
|
|
|
@Column(length=1)
|
|
private String adptruseyn;
|
|
|
|
@Column(length=30)
|
|
private String bidinterface;
|
|
|
|
@Column(length=100)
|
|
private String cirnumber;
|
|
|
|
@Column(length=20)
|
|
private String companycodedata;
|
|
|
|
@Column(length=1)
|
|
private String dradptryn;
|
|
|
|
@Column(length=4)
|
|
private String eaibzwkdstcd;
|
|
|
|
@Column(length=17)
|
|
private String eailastamndyms;
|
|
|
|
@Column(length=1)
|
|
private String eaisevrdstcd;
|
|
|
|
@Column(length=1)
|
|
private String kesauseyn;
|
|
|
|
@Column(length=30)
|
|
private String monicndnctnt;
|
|
|
|
@Column(length=1)
|
|
private String moniuseyn;
|
|
|
|
@Column(length=20)
|
|
private String msgencode;
|
|
|
|
@Column(length=60)
|
|
private String osidinstibzwkrsempname;
|
|
|
|
@Column(length=12)
|
|
private String osidinstino;
|
|
|
|
@Column(length=50)
|
|
private String osidinstitelno;
|
|
|
|
@Column(length=1)
|
|
private String osidinstiyn;
|
|
|
|
@Column(length=100)
|
|
private String refclsname;
|
|
|
|
@Column(length=1)
|
|
private String sndrcvhmslogyn;
|
|
|
|
@Column(length=1)
|
|
private String spcfcluuseyn;
|
|
|
|
@Column(length=1)
|
|
private String testmasteryn;
|
|
|
|
public Tseaiad01() {
|
|
}
|
|
|
|
public String getAdptrbzwkgroupname() {
|
|
return this.adptrbzwkgroupname;
|
|
}
|
|
|
|
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
|
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
|
}
|
|
|
|
public String getAdptrbzwkgroupdesc() {
|
|
return this.adptrbzwkgroupdesc;
|
|
}
|
|
|
|
public void setAdptrbzwkgroupdesc(String adptrbzwkgroupdesc) {
|
|
this.adptrbzwkgroupdesc = adptrbzwkgroupdesc;
|
|
}
|
|
|
|
public String getAdptrcd() {
|
|
return this.adptrcd;
|
|
}
|
|
|
|
public void setAdptrcd(String adptrcd) {
|
|
this.adptrcd = adptrcd;
|
|
}
|
|
|
|
public String getAdptrinsticode() {
|
|
return this.adptrinsticode;
|
|
}
|
|
|
|
public void setAdptrinsticode(String adptrinsticode) {
|
|
this.adptrinsticode = adptrinsticode;
|
|
}
|
|
|
|
public String getAdptriodstcd() {
|
|
return this.adptriodstcd;
|
|
}
|
|
|
|
public void setAdptriodstcd(String adptriodstcd) {
|
|
this.adptriodstcd = adptriodstcd;
|
|
}
|
|
|
|
public String getAdptrmsgdstcd() {
|
|
return this.adptrmsgdstcd;
|
|
}
|
|
|
|
public void setAdptrmsgdstcd(String adptrmsgdstcd) {
|
|
this.adptrmsgdstcd = adptrmsgdstcd;
|
|
}
|
|
|
|
public String getAdptrmsgptrncd() {
|
|
return this.adptrmsgptrncd;
|
|
}
|
|
|
|
public void setAdptrmsgptrncd(String adptrmsgptrncd) {
|
|
this.adptrmsgptrncd = adptrmsgptrncd;
|
|
}
|
|
|
|
public String getAdptrnickname() {
|
|
return this.adptrnickname;
|
|
}
|
|
|
|
public void setAdptrnickname(String adptrnickname) {
|
|
this.adptrnickname = adptrnickname;
|
|
}
|
|
|
|
public String getAdptruseyn() {
|
|
return this.adptruseyn;
|
|
}
|
|
|
|
public void setAdptruseyn(String adptruseyn) {
|
|
this.adptruseyn = adptruseyn;
|
|
}
|
|
|
|
public String getBidinterface() {
|
|
return this.bidinterface;
|
|
}
|
|
|
|
public void setBidinterface(String bidinterface) {
|
|
this.bidinterface = bidinterface;
|
|
}
|
|
|
|
public String getCirnumber() {
|
|
return this.cirnumber;
|
|
}
|
|
|
|
public void setCirnumber(String cirnumber) {
|
|
this.cirnumber = cirnumber;
|
|
}
|
|
|
|
public String getCompanycodedata() {
|
|
return this.companycodedata;
|
|
}
|
|
|
|
public void setCompanycodedata(String companycodedata) {
|
|
this.companycodedata = companycodedata;
|
|
}
|
|
|
|
public String getDradptryn() {
|
|
return this.dradptryn;
|
|
}
|
|
|
|
public void setDradptryn(String dradptryn) {
|
|
this.dradptryn = dradptryn;
|
|
}
|
|
|
|
public String getEaibzwkdstcd() {
|
|
return this.eaibzwkdstcd;
|
|
}
|
|
|
|
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
|
this.eaibzwkdstcd = eaibzwkdstcd;
|
|
}
|
|
|
|
public String getEailastamndyms() {
|
|
return this.eailastamndyms;
|
|
}
|
|
|
|
public void setEailastamndyms(String eailastamndyms) {
|
|
this.eailastamndyms = eailastamndyms;
|
|
}
|
|
|
|
public String getEaisevrdstcd() {
|
|
return this.eaisevrdstcd;
|
|
}
|
|
|
|
public void setEaisevrdstcd(String eaisevrdstcd) {
|
|
this.eaisevrdstcd = eaisevrdstcd;
|
|
}
|
|
|
|
public String getKesauseyn() {
|
|
return this.kesauseyn;
|
|
}
|
|
|
|
public void setKesauseyn(String kesauseyn) {
|
|
this.kesauseyn = kesauseyn;
|
|
}
|
|
|
|
public String getMonicndnctnt() {
|
|
return this.monicndnctnt;
|
|
}
|
|
|
|
public void setMonicndnctnt(String monicndnctnt) {
|
|
this.monicndnctnt = monicndnctnt;
|
|
}
|
|
|
|
public String getMoniuseyn() {
|
|
return this.moniuseyn;
|
|
}
|
|
|
|
public void setMoniuseyn(String moniuseyn) {
|
|
this.moniuseyn = moniuseyn;
|
|
}
|
|
|
|
public String getMsgencode() {
|
|
return this.msgencode;
|
|
}
|
|
|
|
public void setMsgencode(String msgencode) {
|
|
this.msgencode = msgencode;
|
|
}
|
|
|
|
public String getOsidinstibzwkrsempname() {
|
|
return this.osidinstibzwkrsempname;
|
|
}
|
|
|
|
public void setOsidinstibzwkrsempname(String osidinstibzwkrsempname) {
|
|
this.osidinstibzwkrsempname = osidinstibzwkrsempname;
|
|
}
|
|
|
|
public String getOsidinstino() {
|
|
return this.osidinstino;
|
|
}
|
|
|
|
public void setOsidinstino(String osidinstino) {
|
|
this.osidinstino = osidinstino;
|
|
}
|
|
|
|
public String getOsidinstitelno() {
|
|
return this.osidinstitelno;
|
|
}
|
|
|
|
public void setOsidinstitelno(String osidinstitelno) {
|
|
this.osidinstitelno = osidinstitelno;
|
|
}
|
|
|
|
public String getOsidinstiyn() {
|
|
return this.osidinstiyn;
|
|
}
|
|
|
|
public void setOsidinstiyn(String osidinstiyn) {
|
|
this.osidinstiyn = osidinstiyn;
|
|
}
|
|
|
|
public String getRefclsname() {
|
|
return this.refclsname;
|
|
}
|
|
|
|
public void setRefclsname(String refclsname) {
|
|
this.refclsname = refclsname;
|
|
}
|
|
|
|
public String getSndrcvhmslogyn() {
|
|
return this.sndrcvhmslogyn;
|
|
}
|
|
|
|
public void setSndrcvhmslogyn(String sndrcvhmslogyn) {
|
|
this.sndrcvhmslogyn = sndrcvhmslogyn;
|
|
}
|
|
|
|
public String getSpcfcluuseyn() {
|
|
return this.spcfcluuseyn;
|
|
}
|
|
|
|
public void setSpcfcluuseyn(String spcfcluuseyn) {
|
|
this.spcfcluuseyn = spcfcluuseyn;
|
|
}
|
|
|
|
public String getTestmasteryn() {
|
|
return this.testmasteryn;
|
|
}
|
|
|
|
public void setTestmasteryn(String testmasteryn) {
|
|
this.testmasteryn = testmasteryn;
|
|
}
|
|
|
|
} |