init
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the std_msg_lout database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="std_msg_lout")
|
||||
@NamedQuery(name="StdMsgLout.findAll", query="SELECT s FROM StdMsgLout s")
|
||||
public class StdMsgLout implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(name="layout_name", unique=true, nullable=false, length=500)
|
||||
private String layoutName;
|
||||
|
||||
@Column(name="create_datetime", nullable=false)
|
||||
private Timestamp createDatetime;
|
||||
|
||||
@Column(name="layout_desc", length=1000)
|
||||
private String layoutDesc;
|
||||
|
||||
@Column(name="update_datetime", nullable=false)
|
||||
private Timestamp updateDatetime;
|
||||
|
||||
@Column(name="writer_name", nullable=false, length=1000)
|
||||
private String writerName;
|
||||
|
||||
public StdMsgLout() {
|
||||
}
|
||||
|
||||
public String getLayoutName() {
|
||||
return this.layoutName;
|
||||
}
|
||||
|
||||
public void setLayoutName(String layoutName) {
|
||||
this.layoutName = layoutName;
|
||||
}
|
||||
|
||||
public Timestamp getCreateDatetime() {
|
||||
return this.createDatetime;
|
||||
}
|
||||
|
||||
public void setCreateDatetime(Timestamp createDatetime) {
|
||||
this.createDatetime = createDatetime;
|
||||
}
|
||||
|
||||
public String getLayoutDesc() {
|
||||
return this.layoutDesc;
|
||||
}
|
||||
|
||||
public void setLayoutDesc(String layoutDesc) {
|
||||
this.layoutDesc = layoutDesc;
|
||||
}
|
||||
|
||||
public Timestamp getUpdateDatetime() {
|
||||
return this.updateDatetime;
|
||||
}
|
||||
|
||||
public void setUpdateDatetime(Timestamp updateDatetime) {
|
||||
this.updateDatetime = updateDatetime;
|
||||
}
|
||||
|
||||
public String getWriterName() {
|
||||
return this.writerName;
|
||||
}
|
||||
|
||||
public void setWriterName(String writerName) {
|
||||
this.writerName = writerName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the std_msg_lout_deploy database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="std_msg_lout_deploy")
|
||||
@NamedQuery(name="StdMsgLoutDeploy.findAll", query="SELECT s FROM StdMsgLoutDeploy s")
|
||||
public class StdMsgLoutDeploy implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(name="layout_name", nullable=false, length=500)
|
||||
private String layoutName;
|
||||
|
||||
public StdMsgLoutDeploy() {
|
||||
}
|
||||
|
||||
public String getLayoutName() {
|
||||
return this.layoutName;
|
||||
}
|
||||
|
||||
public void setLayoutName(String layoutName) {
|
||||
this.layoutName = layoutName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the std_msg_lout_hist database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="std_msg_lout_hist")
|
||||
@NamedQuery(name="StdMsgLoutHist.findAll", query="SELECT s FROM StdMsgLoutHist s")
|
||||
public class StdMsgLoutHist implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(name="operation_seq", unique=true, nullable=false)
|
||||
private Integer operationSeq;
|
||||
|
||||
@Column(name="item_list_data", length=2147483647)
|
||||
private String itemListData;
|
||||
|
||||
@Column(name="layout_desc", length=1000)
|
||||
private String layoutDesc;
|
||||
|
||||
@Column(name="layout_name", nullable=false, length=500)
|
||||
private String layoutName;
|
||||
|
||||
@Column(name="operation_datetime", nullable=false)
|
||||
private Timestamp operationDatetime;
|
||||
|
||||
@Column(name="operation_type", nullable=false, length=100)
|
||||
private String operationType;
|
||||
|
||||
@Column(name="operator_name", nullable=false, length=1000)
|
||||
private String operatorName;
|
||||
|
||||
public StdMsgLoutHist() {
|
||||
}
|
||||
|
||||
public Integer getOperationSeq() {
|
||||
return this.operationSeq;
|
||||
}
|
||||
|
||||
public void setOperationSeq(Integer operationSeq) {
|
||||
this.operationSeq = operationSeq;
|
||||
}
|
||||
|
||||
public String getItemListData() {
|
||||
return this.itemListData;
|
||||
}
|
||||
|
||||
public void setItemListData(String itemListData) {
|
||||
this.itemListData = itemListData;
|
||||
}
|
||||
|
||||
public String getLayoutDesc() {
|
||||
return this.layoutDesc;
|
||||
}
|
||||
|
||||
public void setLayoutDesc(String layoutDesc) {
|
||||
this.layoutDesc = layoutDesc;
|
||||
}
|
||||
|
||||
public String getLayoutName() {
|
||||
return this.layoutName;
|
||||
}
|
||||
|
||||
public void setLayoutName(String layoutName) {
|
||||
this.layoutName = layoutName;
|
||||
}
|
||||
|
||||
public Timestamp getOperationDatetime() {
|
||||
return this.operationDatetime;
|
||||
}
|
||||
|
||||
public void setOperationDatetime(Timestamp operationDatetime) {
|
||||
this.operationDatetime = operationDatetime;
|
||||
}
|
||||
|
||||
public String getOperationType() {
|
||||
return this.operationType;
|
||||
}
|
||||
|
||||
public void setOperationType(String operationType) {
|
||||
this.operationType = operationType;
|
||||
}
|
||||
|
||||
public String getOperatorName() {
|
||||
return this.operatorName;
|
||||
}
|
||||
|
||||
public void setOperatorName(String operatorName) {
|
||||
this.operatorName = operatorName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,152 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the std_msg_lout_item database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="std_msg_lout_item")
|
||||
@NamedQuery(name="StdMsgLoutItem.findAll", query="SELECT s FROM StdMsgLoutItem s")
|
||||
public class StdMsgLoutItem implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private StdMsgLoutItemPK id;
|
||||
|
||||
@Column(name="array_size", nullable=false)
|
||||
private Integer arraySize;
|
||||
|
||||
@Column(name="data_length")
|
||||
private Integer dataLength;
|
||||
|
||||
@Column(name="data_type", nullable=false)
|
||||
private Integer dataType;
|
||||
|
||||
@Column(name="default_value", length=1000)
|
||||
private String defaultValue;
|
||||
|
||||
@Column(name="field_type", nullable=false)
|
||||
private Integer fieldType;
|
||||
|
||||
@Column(name="item_desc", nullable=false, length=1000)
|
||||
private String itemDesc;
|
||||
|
||||
@Column(name="item_level", nullable=false)
|
||||
private Integer itemLevel;
|
||||
|
||||
@Column(name="item_name", nullable=false, length=500)
|
||||
private String itemName;
|
||||
|
||||
@Column(name="item_type", nullable=false)
|
||||
private Integer itemType;
|
||||
|
||||
@Column(name="ref_field_path", length=1000)
|
||||
private String refFieldPath;
|
||||
|
||||
@Column(name="ref_value", length=1000)
|
||||
private String refValue;
|
||||
|
||||
public StdMsgLoutItem() {
|
||||
}
|
||||
|
||||
public StdMsgLoutItemPK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(StdMsgLoutItemPK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getArraySize() {
|
||||
return this.arraySize;
|
||||
}
|
||||
|
||||
public void setArraySize(Integer arraySize) {
|
||||
this.arraySize = arraySize;
|
||||
}
|
||||
|
||||
public Integer getDataLength() {
|
||||
return this.dataLength;
|
||||
}
|
||||
|
||||
public void setDataLength(Integer dataLength) {
|
||||
this.dataLength = dataLength;
|
||||
}
|
||||
|
||||
public Integer getDataType() {
|
||||
return this.dataType;
|
||||
}
|
||||
|
||||
public void setDataType(Integer dataType) {
|
||||
this.dataType = dataType;
|
||||
}
|
||||
|
||||
public String getDefaultValue() {
|
||||
return this.defaultValue;
|
||||
}
|
||||
|
||||
public void setDefaultValue(String defaultValue) {
|
||||
this.defaultValue = defaultValue;
|
||||
}
|
||||
|
||||
public Integer getFieldType() {
|
||||
return this.fieldType;
|
||||
}
|
||||
|
||||
public void setFieldType(Integer fieldType) {
|
||||
this.fieldType = fieldType;
|
||||
}
|
||||
|
||||
public String getItemDesc() {
|
||||
return this.itemDesc;
|
||||
}
|
||||
|
||||
public void setItemDesc(String itemDesc) {
|
||||
this.itemDesc = itemDesc;
|
||||
}
|
||||
|
||||
public Integer getItemLevel() {
|
||||
return this.itemLevel;
|
||||
}
|
||||
|
||||
public void setItemLevel(Integer itemLevel) {
|
||||
this.itemLevel = itemLevel;
|
||||
}
|
||||
|
||||
public String getItemName() {
|
||||
return this.itemName;
|
||||
}
|
||||
|
||||
public void setItemName(String itemName) {
|
||||
this.itemName = itemName;
|
||||
}
|
||||
|
||||
public Integer getItemType() {
|
||||
return this.itemType;
|
||||
}
|
||||
|
||||
public void setItemType(Integer itemType) {
|
||||
this.itemType = itemType;
|
||||
}
|
||||
|
||||
public String getRefFieldPath() {
|
||||
return this.refFieldPath;
|
||||
}
|
||||
|
||||
public void setRefFieldPath(String refFieldPath) {
|
||||
this.refFieldPath = refFieldPath;
|
||||
}
|
||||
|
||||
public String getRefValue() {
|
||||
return this.refValue;
|
||||
}
|
||||
|
||||
public void setRefValue(String refValue) {
|
||||
this.refValue = refValue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the std_msg_lout_item database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class StdMsgLoutItemPK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(name="layout_name", unique=true, nullable=false, length=500)
|
||||
private String layoutName;
|
||||
|
||||
@Column(name="item_no", unique=true, nullable=false)
|
||||
private Integer itemNo;
|
||||
|
||||
public StdMsgLoutItemPK() {
|
||||
}
|
||||
public String getLayoutName() {
|
||||
return this.layoutName;
|
||||
}
|
||||
public void setLayoutName(String layoutName) {
|
||||
this.layoutName = layoutName;
|
||||
}
|
||||
public Integer getItemNo() {
|
||||
return this.itemNo;
|
||||
}
|
||||
public void setItemNo(Integer itemNo) {
|
||||
this.itemNo = itemNo;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof StdMsgLoutItemPK)) {
|
||||
return false;
|
||||
}
|
||||
StdMsgLoutItemPK castOther = (StdMsgLoutItemPK)other;
|
||||
return
|
||||
this.layoutName.equals(castOther.layoutName)
|
||||
&& this.itemNo.equals(castOther.itemNo);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.layoutName.hashCode();
|
||||
hash = hash * prime + this.itemNo.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,329 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad02")
|
||||
@NamedQuery(name="Tseaiad02.findAll", query="SELECT t FROM Tseaiad02 t")
|
||||
public class Tseaiad02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad02PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String adptrdesc;
|
||||
|
||||
@Column(length=300)
|
||||
private String eaisevrinstncname;
|
||||
|
||||
@Column(length=100)
|
||||
private String lstnerclsname;
|
||||
|
||||
@Column(length=50)
|
||||
private String prptygroupname;
|
||||
|
||||
@Column(length=100)
|
||||
private String testclsname;
|
||||
|
||||
public Tseaiad02() {
|
||||
}
|
||||
|
||||
public Tseaiad02PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad02PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrdesc() {
|
||||
return this.adptrdesc;
|
||||
}
|
||||
|
||||
public void setAdptrdesc(String adptrdesc) {
|
||||
this.adptrdesc = adptrdesc;
|
||||
}
|
||||
|
||||
public String getEaisevrinstncname() {
|
||||
return this.eaisevrinstncname;
|
||||
}
|
||||
|
||||
public void setEaisevrinstncname(String eaisevrinstncname) {
|
||||
this.eaisevrinstncname = eaisevrinstncname;
|
||||
}
|
||||
|
||||
public String getLstnerclsname() {
|
||||
return this.lstnerclsname;
|
||||
}
|
||||
|
||||
public void setLstnerclsname(String lstnerclsname) {
|
||||
this.lstnerclsname = lstnerclsname;
|
||||
}
|
||||
|
||||
public String getPrptygroupname() {
|
||||
return this.prptygroupname;
|
||||
}
|
||||
|
||||
public void setPrptygroupname(String prptygroupname) {
|
||||
this.prptygroupname = prptygroupname;
|
||||
}
|
||||
|
||||
public String getTestclsname() {
|
||||
return this.testclsname;
|
||||
}
|
||||
|
||||
public void setTestclsname(String testclsname) {
|
||||
this.testclsname = testclsname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad02 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad02PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkname;
|
||||
|
||||
public Tseaiad02PK() {
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getAdptrbzwkname() {
|
||||
return this.adptrbzwkname;
|
||||
}
|
||||
public void setAdptrbzwkname(String adptrbzwkname) {
|
||||
this.adptrbzwkname = adptrbzwkname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad02PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad02PK castOther = (Tseaiad02PK)other;
|
||||
return
|
||||
this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.adptrbzwkname.equals(castOther.adptrbzwkname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.adptrbzwkname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad03")
|
||||
@NamedQuery(name="Tseaiad03.findAll", query="SELECT t FROM Tseaiad03 t")
|
||||
public class Tseaiad03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String adptrcd;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrname;
|
||||
|
||||
public Tseaiad03() {
|
||||
}
|
||||
|
||||
public String getAdptrcd() {
|
||||
return this.adptrcd;
|
||||
}
|
||||
|
||||
public void setAdptrcd(String adptrcd) {
|
||||
this.adptrcd = adptrcd;
|
||||
}
|
||||
|
||||
public String getAdptrname() {
|
||||
return this.adptrname;
|
||||
}
|
||||
|
||||
public void setAdptrname(String adptrname) {
|
||||
this.adptrname = adptrname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad04")
|
||||
@NamedQuery(name="Tseaiad04.findAll", query="SELECT t FROM Tseaiad04 t")
|
||||
public class Tseaiad04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad04PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String adptrprptydesc;
|
||||
|
||||
@Column(length=20)
|
||||
private String dmnknd;
|
||||
|
||||
public Tseaiad04() {
|
||||
}
|
||||
|
||||
public Tseaiad04PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad04PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrprptydesc() {
|
||||
return this.adptrprptydesc;
|
||||
}
|
||||
|
||||
public void setAdptrprptydesc(String adptrprptydesc) {
|
||||
this.adptrprptydesc = adptrprptydesc;
|
||||
}
|
||||
|
||||
public String getDmnknd() {
|
||||
return this.dmnknd;
|
||||
}
|
||||
|
||||
public void setDmnknd(String dmnknd) {
|
||||
this.dmnknd = dmnknd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad04 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad04PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String adptrcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String adptriodstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String adptrprptyname;
|
||||
|
||||
public Tseaiad04PK() {
|
||||
}
|
||||
public String getAdptrcd() {
|
||||
return this.adptrcd;
|
||||
}
|
||||
public void setAdptrcd(String adptrcd) {
|
||||
this.adptrcd = adptrcd;
|
||||
}
|
||||
public String getAdptriodstcd() {
|
||||
return this.adptriodstcd;
|
||||
}
|
||||
public void setAdptriodstcd(String adptriodstcd) {
|
||||
this.adptriodstcd = adptriodstcd;
|
||||
}
|
||||
public String getAdptrprptyname() {
|
||||
return this.adptrprptyname;
|
||||
}
|
||||
public void setAdptrprptyname(String adptrprptyname) {
|
||||
this.adptrprptyname = adptrprptyname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad04PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad04PK castOther = (Tseaiad04PK)other;
|
||||
return
|
||||
this.adptrcd.equals(castOther.adptrcd)
|
||||
&& this.adptriodstcd.equals(castOther.adptriodstcd)
|
||||
&& this.adptrprptyname.equals(castOther.adptrprptyname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrcd.hashCode();
|
||||
hash = hash * prime + this.adptriodstcd.hashCode();
|
||||
hash = hash * prime + this.adptrprptyname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad05 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad05")
|
||||
@NamedQuery(name="Tseaiad05.findAll", query="SELECT t FROM Tseaiad05 t")
|
||||
public class Tseaiad05 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad05PK id;
|
||||
|
||||
@Column(length=20)
|
||||
private String bkupadptrgstatsevrname;
|
||||
|
||||
@Column(length=1)
|
||||
private String bkupautocnvsnyn;
|
||||
|
||||
private Integer bkupcnvsnbaseobstclrt;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal bkupsoftlinkportno;
|
||||
|
||||
private Integer dmymsgsituval;
|
||||
|
||||
private Integer hostdpstruval;
|
||||
|
||||
private Integer hostsndmsgruval;
|
||||
|
||||
@Column(length=10)
|
||||
private String loglvelname;
|
||||
|
||||
@Column(length=1)
|
||||
private String loguseyn;
|
||||
|
||||
@Column(length=16)
|
||||
private String lugroupamndhms;
|
||||
|
||||
@Column(length=16)
|
||||
private String lugroupregihms;
|
||||
|
||||
private Integer maxlogfileval;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal softlinkportno;
|
||||
|
||||
@Column(length=20)
|
||||
private String softlinksevrname;
|
||||
|
||||
private Integer svctoutval;
|
||||
|
||||
@Column(length=10)
|
||||
private String uapplidname;
|
||||
|
||||
private Integer wcasesscnt;
|
||||
|
||||
public Tseaiad05() {
|
||||
}
|
||||
|
||||
public Tseaiad05PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad05PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBkupadptrgstatsevrname() {
|
||||
return this.bkupadptrgstatsevrname;
|
||||
}
|
||||
|
||||
public void setBkupadptrgstatsevrname(String bkupadptrgstatsevrname) {
|
||||
this.bkupadptrgstatsevrname = bkupadptrgstatsevrname;
|
||||
}
|
||||
|
||||
public String getBkupautocnvsnyn() {
|
||||
return this.bkupautocnvsnyn;
|
||||
}
|
||||
|
||||
public void setBkupautocnvsnyn(String bkupautocnvsnyn) {
|
||||
this.bkupautocnvsnyn = bkupautocnvsnyn;
|
||||
}
|
||||
|
||||
public Integer getBkupcnvsnbaseobstclrt() {
|
||||
return this.bkupcnvsnbaseobstclrt;
|
||||
}
|
||||
|
||||
public void setBkupcnvsnbaseobstclrt(Integer bkupcnvsnbaseobstclrt) {
|
||||
this.bkupcnvsnbaseobstclrt = bkupcnvsnbaseobstclrt;
|
||||
}
|
||||
|
||||
public BigDecimal getBkupsoftlinkportno() {
|
||||
return this.bkupsoftlinkportno;
|
||||
}
|
||||
|
||||
public void setBkupsoftlinkportno(BigDecimal bkupsoftlinkportno) {
|
||||
this.bkupsoftlinkportno = bkupsoftlinkportno;
|
||||
}
|
||||
|
||||
public Integer getDmymsgsituval() {
|
||||
return this.dmymsgsituval;
|
||||
}
|
||||
|
||||
public void setDmymsgsituval(Integer dmymsgsituval) {
|
||||
this.dmymsgsituval = dmymsgsituval;
|
||||
}
|
||||
|
||||
public Integer getHostdpstruval() {
|
||||
return this.hostdpstruval;
|
||||
}
|
||||
|
||||
public void setHostdpstruval(Integer hostdpstruval) {
|
||||
this.hostdpstruval = hostdpstruval;
|
||||
}
|
||||
|
||||
public Integer getHostsndmsgruval() {
|
||||
return this.hostsndmsgruval;
|
||||
}
|
||||
|
||||
public void setHostsndmsgruval(Integer hostsndmsgruval) {
|
||||
this.hostsndmsgruval = hostsndmsgruval;
|
||||
}
|
||||
|
||||
public String getLoglvelname() {
|
||||
return this.loglvelname;
|
||||
}
|
||||
|
||||
public void setLoglvelname(String loglvelname) {
|
||||
this.loglvelname = loglvelname;
|
||||
}
|
||||
|
||||
public String getLoguseyn() {
|
||||
return this.loguseyn;
|
||||
}
|
||||
|
||||
public void setLoguseyn(String loguseyn) {
|
||||
this.loguseyn = loguseyn;
|
||||
}
|
||||
|
||||
public String getLugroupamndhms() {
|
||||
return this.lugroupamndhms;
|
||||
}
|
||||
|
||||
public void setLugroupamndhms(String lugroupamndhms) {
|
||||
this.lugroupamndhms = lugroupamndhms;
|
||||
}
|
||||
|
||||
public String getLugroupregihms() {
|
||||
return this.lugroupregihms;
|
||||
}
|
||||
|
||||
public void setLugroupregihms(String lugroupregihms) {
|
||||
this.lugroupregihms = lugroupregihms;
|
||||
}
|
||||
|
||||
public Integer getMaxlogfileval() {
|
||||
return this.maxlogfileval;
|
||||
}
|
||||
|
||||
public void setMaxlogfileval(Integer maxlogfileval) {
|
||||
this.maxlogfileval = maxlogfileval;
|
||||
}
|
||||
|
||||
public BigDecimal getSoftlinkportno() {
|
||||
return this.softlinkportno;
|
||||
}
|
||||
|
||||
public void setSoftlinkportno(BigDecimal softlinkportno) {
|
||||
this.softlinkportno = softlinkportno;
|
||||
}
|
||||
|
||||
public String getSoftlinksevrname() {
|
||||
return this.softlinksevrname;
|
||||
}
|
||||
|
||||
public void setSoftlinksevrname(String softlinksevrname) {
|
||||
this.softlinksevrname = softlinksevrname;
|
||||
}
|
||||
|
||||
public Integer getSvctoutval() {
|
||||
return this.svctoutval;
|
||||
}
|
||||
|
||||
public void setSvctoutval(Integer svctoutval) {
|
||||
this.svctoutval = svctoutval;
|
||||
}
|
||||
|
||||
public String getUapplidname() {
|
||||
return this.uapplidname;
|
||||
}
|
||||
|
||||
public void setUapplidname(String uapplidname) {
|
||||
this.uapplidname = uapplidname;
|
||||
}
|
||||
|
||||
public Integer getWcasesscnt() {
|
||||
return this.wcasesscnt;
|
||||
}
|
||||
|
||||
public void setWcasesscnt(Integer wcasesscnt) {
|
||||
this.wcasesscnt = wcasesscnt;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad05 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad05PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String adptrgstatsevrname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=55)
|
||||
private String lugroupname;
|
||||
|
||||
public Tseaiad05PK() {
|
||||
}
|
||||
public String getAdptrgstatsevrname() {
|
||||
return this.adptrgstatsevrname;
|
||||
}
|
||||
public void setAdptrgstatsevrname(String adptrgstatsevrname) {
|
||||
this.adptrgstatsevrname = adptrgstatsevrname;
|
||||
}
|
||||
public String getAdptrgroupname() {
|
||||
return this.adptrgroupname;
|
||||
}
|
||||
public void setAdptrgroupname(String adptrgroupname) {
|
||||
this.adptrgroupname = adptrgroupname;
|
||||
}
|
||||
public String getLugroupname() {
|
||||
return this.lugroupname;
|
||||
}
|
||||
public void setLugroupname(String lugroupname) {
|
||||
this.lugroupname = lugroupname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad05PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad05PK castOther = (Tseaiad05PK)other;
|
||||
return
|
||||
this.adptrgstatsevrname.equals(castOther.adptrgstatsevrname)
|
||||
&& this.adptrgroupname.equals(castOther.adptrgroupname)
|
||||
&& this.lugroupname.equals(castOther.lugroupname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrgstatsevrname.hashCode();
|
||||
hash = hash * prime + this.adptrgroupname.hashCode();
|
||||
hash = hash * prime + this.lugroupname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad06 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad06")
|
||||
@NamedQuery(name="Tseaiad06.findAll", query="SELECT t FROM Tseaiad06 t")
|
||||
public class Tseaiad06 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad06PK id;
|
||||
|
||||
@Column(length=1)
|
||||
private String bkupluyn;
|
||||
|
||||
@Column(length=10)
|
||||
private String loglvelname;
|
||||
|
||||
@Column(length=1)
|
||||
private String loguseyn;
|
||||
|
||||
@Column(length=16)
|
||||
private String luamndhms;
|
||||
|
||||
@Column(length=16)
|
||||
private String luinforegihms;
|
||||
|
||||
private Integer maxlogfileval;
|
||||
|
||||
@Column(length=1)
|
||||
private String rmtluyn;
|
||||
|
||||
@Column(length=1)
|
||||
private String sndrcvdstcd;
|
||||
|
||||
@Column(length=10)
|
||||
private String uapplidname;
|
||||
|
||||
public Tseaiad06() {
|
||||
}
|
||||
|
||||
public Tseaiad06PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad06PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBkupluyn() {
|
||||
return this.bkupluyn;
|
||||
}
|
||||
|
||||
public void setBkupluyn(String bkupluyn) {
|
||||
this.bkupluyn = bkupluyn;
|
||||
}
|
||||
|
||||
public String getLoglvelname() {
|
||||
return this.loglvelname;
|
||||
}
|
||||
|
||||
public void setLoglvelname(String loglvelname) {
|
||||
this.loglvelname = loglvelname;
|
||||
}
|
||||
|
||||
public String getLoguseyn() {
|
||||
return this.loguseyn;
|
||||
}
|
||||
|
||||
public void setLoguseyn(String loguseyn) {
|
||||
this.loguseyn = loguseyn;
|
||||
}
|
||||
|
||||
public String getLuamndhms() {
|
||||
return this.luamndhms;
|
||||
}
|
||||
|
||||
public void setLuamndhms(String luamndhms) {
|
||||
this.luamndhms = luamndhms;
|
||||
}
|
||||
|
||||
public String getLuinforegihms() {
|
||||
return this.luinforegihms;
|
||||
}
|
||||
|
||||
public void setLuinforegihms(String luinforegihms) {
|
||||
this.luinforegihms = luinforegihms;
|
||||
}
|
||||
|
||||
public Integer getMaxlogfileval() {
|
||||
return this.maxlogfileval;
|
||||
}
|
||||
|
||||
public void setMaxlogfileval(Integer maxlogfileval) {
|
||||
this.maxlogfileval = maxlogfileval;
|
||||
}
|
||||
|
||||
public String getRmtluyn() {
|
||||
return this.rmtluyn;
|
||||
}
|
||||
|
||||
public void setRmtluyn(String rmtluyn) {
|
||||
this.rmtluyn = rmtluyn;
|
||||
}
|
||||
|
||||
public String getSndrcvdstcd() {
|
||||
return this.sndrcvdstcd;
|
||||
}
|
||||
|
||||
public void setSndrcvdstcd(String sndrcvdstcd) {
|
||||
this.sndrcvdstcd = sndrcvdstcd;
|
||||
}
|
||||
|
||||
public String getUapplidname() {
|
||||
return this.uapplidname;
|
||||
}
|
||||
|
||||
public void setUapplidname(String uapplidname) {
|
||||
this.uapplidname = uapplidname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad06 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad06PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String adptrgstatsevrname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=55)
|
||||
private String lugroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String puname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String luname;
|
||||
|
||||
public Tseaiad06PK() {
|
||||
}
|
||||
public String getAdptrgstatsevrname() {
|
||||
return this.adptrgstatsevrname;
|
||||
}
|
||||
public void setAdptrgstatsevrname(String adptrgstatsevrname) {
|
||||
this.adptrgstatsevrname = adptrgstatsevrname;
|
||||
}
|
||||
public String getAdptrgroupname() {
|
||||
return this.adptrgroupname;
|
||||
}
|
||||
public void setAdptrgroupname(String adptrgroupname) {
|
||||
this.adptrgroupname = adptrgroupname;
|
||||
}
|
||||
public String getLugroupname() {
|
||||
return this.lugroupname;
|
||||
}
|
||||
public void setLugroupname(String lugroupname) {
|
||||
this.lugroupname = lugroupname;
|
||||
}
|
||||
public String getPuname() {
|
||||
return this.puname;
|
||||
}
|
||||
public void setPuname(String puname) {
|
||||
this.puname = puname;
|
||||
}
|
||||
public String getLuname() {
|
||||
return this.luname;
|
||||
}
|
||||
public void setLuname(String luname) {
|
||||
this.luname = luname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad06PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad06PK castOther = (Tseaiad06PK)other;
|
||||
return
|
||||
this.adptrgstatsevrname.equals(castOther.adptrgstatsevrname)
|
||||
&& this.adptrgroupname.equals(castOther.adptrgroupname)
|
||||
&& this.lugroupname.equals(castOther.lugroupname)
|
||||
&& this.puname.equals(castOther.puname)
|
||||
&& this.luname.equals(castOther.luname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrgstatsevrname.hashCode();
|
||||
hash = hash * prime + this.adptrgroupname.hashCode();
|
||||
hash = hash * prime + this.lugroupname.hashCode();
|
||||
hash = hash * prime + this.puname.hashCode();
|
||||
hash = hash * prime + this.luname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad07 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad07")
|
||||
@NamedQuery(name="Tseaiad07.findAll", query="SELECT t FROM Tseaiad07 t")
|
||||
public class Tseaiad07 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad07PK id;
|
||||
|
||||
@Column(length=1)
|
||||
private String datadstcd;
|
||||
|
||||
@Column(length=12)
|
||||
private String eaierrctnt;
|
||||
|
||||
@Column(length=16)
|
||||
private String frtimmsgdpsthms;
|
||||
|
||||
public Tseaiad07() {
|
||||
}
|
||||
|
||||
public Tseaiad07PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad07PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDatadstcd() {
|
||||
return this.datadstcd;
|
||||
}
|
||||
|
||||
public void setDatadstcd(String datadstcd) {
|
||||
this.datadstcd = datadstcd;
|
||||
}
|
||||
|
||||
public String getEaierrctnt() {
|
||||
return this.eaierrctnt;
|
||||
}
|
||||
|
||||
public void setEaierrctnt(String eaierrctnt) {
|
||||
this.eaierrctnt = eaierrctnt;
|
||||
}
|
||||
|
||||
public String getFrtimmsgdpsthms() {
|
||||
return this.frtimmsgdpsthms;
|
||||
}
|
||||
|
||||
public void setFrtimmsgdpsthms(String frtimmsgdpsthms) {
|
||||
this.frtimmsgdpsthms = frtimmsgdpsthms;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad07 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad07PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=16)
|
||||
private String msgdpsthms;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String adptrgstatsevrname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=55)
|
||||
private String lugroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String luname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String logprcssserno;
|
||||
|
||||
@Column(unique=true, nullable=false, length=41)
|
||||
private String eaisvcserno;
|
||||
|
||||
public Tseaiad07PK() {
|
||||
}
|
||||
public String getMsgdpsthms() {
|
||||
return this.msgdpsthms;
|
||||
}
|
||||
public void setMsgdpsthms(String msgdpsthms) {
|
||||
this.msgdpsthms = msgdpsthms;
|
||||
}
|
||||
public String getAdptrgstatsevrname() {
|
||||
return this.adptrgstatsevrname;
|
||||
}
|
||||
public void setAdptrgstatsevrname(String adptrgstatsevrname) {
|
||||
this.adptrgstatsevrname = adptrgstatsevrname;
|
||||
}
|
||||
public String getAdptrgroupname() {
|
||||
return this.adptrgroupname;
|
||||
}
|
||||
public void setAdptrgroupname(String adptrgroupname) {
|
||||
this.adptrgroupname = adptrgroupname;
|
||||
}
|
||||
public String getLugroupname() {
|
||||
return this.lugroupname;
|
||||
}
|
||||
public void setLugroupname(String lugroupname) {
|
||||
this.lugroupname = lugroupname;
|
||||
}
|
||||
public String getLuname() {
|
||||
return this.luname;
|
||||
}
|
||||
public void setLuname(String luname) {
|
||||
this.luname = luname;
|
||||
}
|
||||
public String getLogprcssserno() {
|
||||
return this.logprcssserno;
|
||||
}
|
||||
public void setLogprcssserno(String logprcssserno) {
|
||||
this.logprcssserno = logprcssserno;
|
||||
}
|
||||
public String getEaisvcserno() {
|
||||
return this.eaisvcserno;
|
||||
}
|
||||
public void setEaisvcserno(String eaisvcserno) {
|
||||
this.eaisvcserno = eaisvcserno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad07PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad07PK castOther = (Tseaiad07PK)other;
|
||||
return
|
||||
this.msgdpsthms.equals(castOther.msgdpsthms)
|
||||
&& this.adptrgstatsevrname.equals(castOther.adptrgstatsevrname)
|
||||
&& this.adptrgroupname.equals(castOther.adptrgroupname)
|
||||
&& this.lugroupname.equals(castOther.lugroupname)
|
||||
&& this.luname.equals(castOther.luname)
|
||||
&& this.logprcssserno.equals(castOther.logprcssserno)
|
||||
&& this.eaisvcserno.equals(castOther.eaisvcserno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.msgdpsthms.hashCode();
|
||||
hash = hash * prime + this.adptrgstatsevrname.hashCode();
|
||||
hash = hash * prime + this.adptrgroupname.hashCode();
|
||||
hash = hash * prime + this.lugroupname.hashCode();
|
||||
hash = hash * prime + this.luname.hashCode();
|
||||
hash = hash * prime + this.logprcssserno.hashCode();
|
||||
hash = hash * prime + this.eaisvcserno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad13 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad13")
|
||||
@NamedQuery(name="Tseaiad13.findAll", query="SELECT t FROM Tseaiad13 t")
|
||||
public class Tseaiad13 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String snaadptrsevrname;
|
||||
|
||||
@Column(length=100)
|
||||
private String snaadptrsevrctnt;
|
||||
|
||||
@Column(length=20)
|
||||
private String snaadptrsevripname;
|
||||
|
||||
public Tseaiad13() {
|
||||
}
|
||||
|
||||
public String getSnaadptrsevrname() {
|
||||
return this.snaadptrsevrname;
|
||||
}
|
||||
|
||||
public void setSnaadptrsevrname(String snaadptrsevrname) {
|
||||
this.snaadptrsevrname = snaadptrsevrname;
|
||||
}
|
||||
|
||||
public String getSnaadptrsevrctnt() {
|
||||
return this.snaadptrsevrctnt;
|
||||
}
|
||||
|
||||
public void setSnaadptrsevrctnt(String snaadptrsevrctnt) {
|
||||
this.snaadptrsevrctnt = snaadptrsevrctnt;
|
||||
}
|
||||
|
||||
public String getSnaadptrsevripname() {
|
||||
return this.snaadptrsevripname;
|
||||
}
|
||||
|
||||
public void setSnaadptrsevripname(String snaadptrsevripname) {
|
||||
this.snaadptrsevripname = snaadptrsevripname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad14 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad14")
|
||||
@NamedQuery(name="Tseaiad14.findAll", query="SELECT t FROM Tseaiad14 t")
|
||||
public class Tseaiad14 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String prptygroupname;
|
||||
|
||||
@Column(length=200)
|
||||
private String prptygroupdesc;
|
||||
|
||||
public Tseaiad14() {
|
||||
}
|
||||
|
||||
public String getPrptygroupname() {
|
||||
return this.prptygroupname;
|
||||
}
|
||||
|
||||
public void setPrptygroupname(String prptygroupname) {
|
||||
this.prptygroupname = prptygroupname;
|
||||
}
|
||||
|
||||
public String getPrptygroupdesc() {
|
||||
return this.prptygroupdesc;
|
||||
}
|
||||
|
||||
public void setPrptygroupdesc(String prptygroupdesc) {
|
||||
this.prptygroupdesc = prptygroupdesc;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad15 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad15")
|
||||
@NamedQuery(name="Tseaiad15.findAll", query="SELECT t FROM Tseaiad15 t")
|
||||
public class Tseaiad15 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad15PK id;
|
||||
|
||||
@Column(length=2000)
|
||||
private String prpty2val;
|
||||
|
||||
public Tseaiad15() {
|
||||
}
|
||||
|
||||
public Tseaiad15PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad15PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPrpty2val() {
|
||||
return this.prpty2val;
|
||||
}
|
||||
|
||||
public void setPrpty2val(String prpty2val) {
|
||||
this.prpty2val = prpty2val;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad15 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad15PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String prptygroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String prptyname;
|
||||
|
||||
public Tseaiad15PK() {
|
||||
}
|
||||
public String getPrptygroupname() {
|
||||
return this.prptygroupname;
|
||||
}
|
||||
public void setPrptygroupname(String prptygroupname) {
|
||||
this.prptygroupname = prptygroupname;
|
||||
}
|
||||
public String getPrptyname() {
|
||||
return this.prptyname;
|
||||
}
|
||||
public void setPrptyname(String prptyname) {
|
||||
this.prptyname = prptyname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad15PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad15PK castOther = (Tseaiad15PK)other;
|
||||
return
|
||||
this.prptygroupname.equals(castOther.prptygroupname)
|
||||
&& this.prptyname.equals(castOther.prptyname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.prptygroupname.hashCode();
|
||||
hash = hash * prime + this.prptyname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad17 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad17")
|
||||
@NamedQuery(name="Tseaiad17.findAll", query="SELECT t FROM Tseaiad17 t")
|
||||
public class Tseaiad17 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(length=1)
|
||||
private String adptrmngdstcd;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrstarthms;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrstophms;
|
||||
|
||||
@Column(length=17)
|
||||
private String lastamndyms;
|
||||
|
||||
@Column(length=8)
|
||||
private String lastamnuserid;
|
||||
|
||||
public Tseaiad17() {
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getAdptrmngdstcd() {
|
||||
return this.adptrmngdstcd;
|
||||
}
|
||||
|
||||
public void setAdptrmngdstcd(String adptrmngdstcd) {
|
||||
this.adptrmngdstcd = adptrmngdstcd;
|
||||
}
|
||||
|
||||
public String getAdptrstarthms() {
|
||||
return this.adptrstarthms;
|
||||
}
|
||||
|
||||
public void setAdptrstarthms(String adptrstarthms) {
|
||||
this.adptrstarthms = adptrstarthms;
|
||||
}
|
||||
|
||||
public String getAdptrstophms() {
|
||||
return this.adptrstophms;
|
||||
}
|
||||
|
||||
public void setAdptrstophms(String adptrstophms) {
|
||||
this.adptrstophms = adptrstophms;
|
||||
}
|
||||
|
||||
public String getLastamndyms() {
|
||||
return this.lastamndyms;
|
||||
}
|
||||
|
||||
public void setLastamndyms(String lastamndyms) {
|
||||
this.lastamndyms = lastamndyms;
|
||||
}
|
||||
|
||||
public String getLastamnuserid() {
|
||||
return this.lastamnuserid;
|
||||
}
|
||||
|
||||
public void setLastamnuserid(String lastamnuserid) {
|
||||
this.lastamnuserid = lastamnuserid;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiad18 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiad18")
|
||||
@NamedQuery(name="Tseaiad18.findAll", query="SELECT t FROM Tseaiad18 t")
|
||||
public class Tseaiad18 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiad18PK id;
|
||||
|
||||
@Column(length=500)
|
||||
private String adptrevterrctnt;
|
||||
|
||||
@Column(length=20)
|
||||
private String adptrevtstatus;
|
||||
|
||||
@Column(length=1)
|
||||
private String adptrmngdstcd;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrstarthms;
|
||||
|
||||
@Column(length=10)
|
||||
private String adptrstartstop;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrstophms;
|
||||
|
||||
@Column(length=8)
|
||||
private String lastamnuserid;
|
||||
|
||||
public Tseaiad18() {
|
||||
}
|
||||
|
||||
public Tseaiad18PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiad18PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrevterrctnt() {
|
||||
return this.adptrevterrctnt;
|
||||
}
|
||||
|
||||
public void setAdptrevterrctnt(String adptrevterrctnt) {
|
||||
this.adptrevterrctnt = adptrevterrctnt;
|
||||
}
|
||||
|
||||
public String getAdptrevtstatus() {
|
||||
return this.adptrevtstatus;
|
||||
}
|
||||
|
||||
public void setAdptrevtstatus(String adptrevtstatus) {
|
||||
this.adptrevtstatus = adptrevtstatus;
|
||||
}
|
||||
|
||||
public String getAdptrmngdstcd() {
|
||||
return this.adptrmngdstcd;
|
||||
}
|
||||
|
||||
public void setAdptrmngdstcd(String adptrmngdstcd) {
|
||||
this.adptrmngdstcd = adptrmngdstcd;
|
||||
}
|
||||
|
||||
public String getAdptrstarthms() {
|
||||
return this.adptrstarthms;
|
||||
}
|
||||
|
||||
public void setAdptrstarthms(String adptrstarthms) {
|
||||
this.adptrstarthms = adptrstarthms;
|
||||
}
|
||||
|
||||
public String getAdptrstartstop() {
|
||||
return this.adptrstartstop;
|
||||
}
|
||||
|
||||
public void setAdptrstartstop(String adptrstartstop) {
|
||||
this.adptrstartstop = adptrstartstop;
|
||||
}
|
||||
|
||||
public String getAdptrstophms() {
|
||||
return this.adptrstophms;
|
||||
}
|
||||
|
||||
public void setAdptrstophms(String adptrstophms) {
|
||||
this.adptrstophms = adptrstophms;
|
||||
}
|
||||
|
||||
public String getLastamnuserid() {
|
||||
return this.lastamnuserid;
|
||||
}
|
||||
|
||||
public void setLastamnuserid(String lastamnuserid) {
|
||||
this.lastamnuserid = lastamnuserid;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiad18 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiad18PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=17)
|
||||
private String adptreventhms;
|
||||
|
||||
public Tseaiad18PK() {
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getAdptreventhms() {
|
||||
return this.adptreventhms;
|
||||
}
|
||||
public void setAdptreventhms(String adptreventhms) {
|
||||
this.adptreventhms = adptreventhms;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiad18PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiad18PK castOther = (Tseaiad18PK)other;
|
||||
return
|
||||
this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.adptreventhms.equals(castOther.adptreventhms);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.adptreventhms.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau01")
|
||||
@NamedQuery(name="Tseaiau01.findAll", query="SELECT t FROM Tseaiau01 t")
|
||||
public class Tseaiau01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=256)
|
||||
private String clientid;
|
||||
|
||||
@Column(length=11)
|
||||
private String accesstokenvalidityseconds;
|
||||
|
||||
@Column(length=256)
|
||||
private String allowedips;
|
||||
|
||||
@Column(length=256)
|
||||
private String authorities;
|
||||
|
||||
@Column(length=256)
|
||||
private String autoapprove;
|
||||
|
||||
@Column(length=40)
|
||||
private String clientname;
|
||||
|
||||
@Column(length=512)
|
||||
private String clientsecret;
|
||||
|
||||
@Column(length=256)
|
||||
private String granttypes;
|
||||
|
||||
@Column(length=8)
|
||||
private String modifiedby;
|
||||
|
||||
@Column(length=14)
|
||||
private String modifiedon;
|
||||
|
||||
@Column(length=256)
|
||||
private String redirecturi;
|
||||
|
||||
@Column(length=11)
|
||||
private String refreshtokenvalidityseconds;
|
||||
|
||||
@Column(length=4000)
|
||||
private String resourceids;
|
||||
|
||||
@Column(length=1024)
|
||||
private String scope;
|
||||
|
||||
@Column(length=4000)
|
||||
private String securitykey;
|
||||
|
||||
public Tseaiau01() {
|
||||
}
|
||||
|
||||
public String getClientid() {
|
||||
return this.clientid;
|
||||
}
|
||||
|
||||
public void setClientid(String clientid) {
|
||||
this.clientid = clientid;
|
||||
}
|
||||
|
||||
public String getAccesstokenvalidityseconds() {
|
||||
return this.accesstokenvalidityseconds;
|
||||
}
|
||||
|
||||
public void setAccesstokenvalidityseconds(String accesstokenvalidityseconds) {
|
||||
this.accesstokenvalidityseconds = accesstokenvalidityseconds;
|
||||
}
|
||||
|
||||
public String getAllowedips() {
|
||||
return this.allowedips;
|
||||
}
|
||||
|
||||
public void setAllowedips(String allowedips) {
|
||||
this.allowedips = allowedips;
|
||||
}
|
||||
|
||||
public String getAuthorities() {
|
||||
return this.authorities;
|
||||
}
|
||||
|
||||
public void setAuthorities(String authorities) {
|
||||
this.authorities = authorities;
|
||||
}
|
||||
|
||||
public String getAutoapprove() {
|
||||
return this.autoapprove;
|
||||
}
|
||||
|
||||
public void setAutoapprove(String autoapprove) {
|
||||
this.autoapprove = autoapprove;
|
||||
}
|
||||
|
||||
public String getClientname() {
|
||||
return this.clientname;
|
||||
}
|
||||
|
||||
public void setClientname(String clientname) {
|
||||
this.clientname = clientname;
|
||||
}
|
||||
|
||||
public String getClientsecret() {
|
||||
return this.clientsecret;
|
||||
}
|
||||
|
||||
public void setClientsecret(String clientsecret) {
|
||||
this.clientsecret = clientsecret;
|
||||
}
|
||||
|
||||
public String getGranttypes() {
|
||||
return this.granttypes;
|
||||
}
|
||||
|
||||
public void setGranttypes(String granttypes) {
|
||||
this.granttypes = granttypes;
|
||||
}
|
||||
|
||||
public String getModifiedby() {
|
||||
return this.modifiedby;
|
||||
}
|
||||
|
||||
public void setModifiedby(String modifiedby) {
|
||||
this.modifiedby = modifiedby;
|
||||
}
|
||||
|
||||
public String getModifiedon() {
|
||||
return this.modifiedon;
|
||||
}
|
||||
|
||||
public void setModifiedon(String modifiedon) {
|
||||
this.modifiedon = modifiedon;
|
||||
}
|
||||
|
||||
public String getRedirecturi() {
|
||||
return this.redirecturi;
|
||||
}
|
||||
|
||||
public void setRedirecturi(String redirecturi) {
|
||||
this.redirecturi = redirecturi;
|
||||
}
|
||||
|
||||
public String getRefreshtokenvalidityseconds() {
|
||||
return this.refreshtokenvalidityseconds;
|
||||
}
|
||||
|
||||
public void setRefreshtokenvalidityseconds(String refreshtokenvalidityseconds) {
|
||||
this.refreshtokenvalidityseconds = refreshtokenvalidityseconds;
|
||||
}
|
||||
|
||||
public String getResourceids() {
|
||||
return this.resourceids;
|
||||
}
|
||||
|
||||
public void setResourceids(String resourceids) {
|
||||
this.resourceids = resourceids;
|
||||
}
|
||||
|
||||
public String getScope() {
|
||||
return this.scope;
|
||||
}
|
||||
|
||||
public void setScope(String scope) {
|
||||
this.scope = scope;
|
||||
}
|
||||
|
||||
public String getSecuritykey() {
|
||||
return this.securitykey;
|
||||
}
|
||||
|
||||
public void setSecuritykey(String securitykey) {
|
||||
this.securitykey = securitykey;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau02")
|
||||
@NamedQuery(name="Tseaiau02.findAll", query="SELECT t FROM Tseaiau02 t")
|
||||
public class Tseaiau02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String userid;
|
||||
|
||||
@Column(length=256)
|
||||
private String authorities;
|
||||
|
||||
@Column(length=100)
|
||||
private String email;
|
||||
|
||||
@Column(length=50)
|
||||
private String mobile;
|
||||
|
||||
@Column(length=8)
|
||||
private String modifiedby;
|
||||
|
||||
@Column(length=14)
|
||||
private String modifiedon;
|
||||
|
||||
@Column(length=50)
|
||||
private String name;
|
||||
|
||||
@Column(length=256)
|
||||
private String organizationid;
|
||||
|
||||
@Column(length=256)
|
||||
private String password;
|
||||
|
||||
@Column(length=20)
|
||||
private String status;
|
||||
|
||||
@Column(length=2)
|
||||
private String usertype;
|
||||
|
||||
public Tseaiau02() {
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getAuthorities() {
|
||||
return this.authorities;
|
||||
}
|
||||
|
||||
public void setAuthorities(String authorities) {
|
||||
this.authorities = authorities;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getMobile() {
|
||||
return this.mobile;
|
||||
}
|
||||
|
||||
public void setMobile(String mobile) {
|
||||
this.mobile = mobile;
|
||||
}
|
||||
|
||||
public String getModifiedby() {
|
||||
return this.modifiedby;
|
||||
}
|
||||
|
||||
public void setModifiedby(String modifiedby) {
|
||||
this.modifiedby = modifiedby;
|
||||
}
|
||||
|
||||
public String getModifiedon() {
|
||||
return this.modifiedon;
|
||||
}
|
||||
|
||||
public void setModifiedon(String modifiedon) {
|
||||
this.modifiedon = modifiedon;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getOrganizationid() {
|
||||
return this.organizationid;
|
||||
}
|
||||
|
||||
public void setOrganizationid(String organizationid) {
|
||||
this.organizationid = organizationid;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getUsertype() {
|
||||
return this.usertype;
|
||||
}
|
||||
|
||||
public void setUsertype(String usertype) {
|
||||
this.usertype = usertype;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau03")
|
||||
@NamedQuery(name="Tseaiau03.findAll", query="SELECT t FROM Tseaiau03 t")
|
||||
public class Tseaiau03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=128)
|
||||
private String scopeid;
|
||||
|
||||
@Column(length=50)
|
||||
private String classification;
|
||||
|
||||
@Column(length=512)
|
||||
private String description;
|
||||
|
||||
@Column(length=128)
|
||||
private String scopename;
|
||||
|
||||
public Tseaiau03() {
|
||||
}
|
||||
|
||||
public String getScopeid() {
|
||||
return this.scopeid;
|
||||
}
|
||||
|
||||
public void setScopeid(String scopeid) {
|
||||
this.scopeid = scopeid;
|
||||
}
|
||||
|
||||
public String getClassification() {
|
||||
return this.classification;
|
||||
}
|
||||
|
||||
public void setClassification(String classification) {
|
||||
this.classification = classification;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getScopename() {
|
||||
return this.scopename;
|
||||
}
|
||||
|
||||
public void setScopename(String scopename) {
|
||||
this.scopename = scopename;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau04")
|
||||
@NamedQuery(name="Tseaiau04.findAll", query="SELECT t FROM Tseaiau04 t")
|
||||
public class Tseaiau04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiau04PK id;
|
||||
|
||||
public Tseaiau04() {
|
||||
}
|
||||
|
||||
public Tseaiau04PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiau04PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiau04 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiau04PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=200)
|
||||
private String bzwksvckeyname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=128)
|
||||
private String scopeid;
|
||||
|
||||
public Tseaiau04PK() {
|
||||
}
|
||||
public String getBzwksvckeyname() {
|
||||
return this.bzwksvckeyname;
|
||||
}
|
||||
public void setBzwksvckeyname(String bzwksvckeyname) {
|
||||
this.bzwksvckeyname = bzwksvckeyname;
|
||||
}
|
||||
public String getScopeid() {
|
||||
return this.scopeid;
|
||||
}
|
||||
public void setScopeid(String scopeid) {
|
||||
this.scopeid = scopeid;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiau04PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiau04PK castOther = (Tseaiau04PK)other;
|
||||
return
|
||||
this.bzwksvckeyname.equals(castOther.bzwksvckeyname)
|
||||
&& this.scopeid.equals(castOther.scopeid);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.bzwksvckeyname.hashCode();
|
||||
hash = hash * prime + this.scopeid.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau05 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau05")
|
||||
@NamedQuery(name="Tseaiau05.findAll", query="SELECT t FROM Tseaiau05 t")
|
||||
public class Tseaiau05 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(name="authentication_id", unique=true, nullable=false, length=255)
|
||||
private String authenticationId;
|
||||
|
||||
private byte[] authentication;
|
||||
|
||||
@Column(name="client_id", length=255)
|
||||
private String clientId;
|
||||
|
||||
@Column(name="create_time")
|
||||
private Timestamp createTime;
|
||||
|
||||
@Column(name="refresh_token", length=255)
|
||||
private String refreshToken;
|
||||
|
||||
private byte[] token;
|
||||
|
||||
@Column(name="token_id", length=255)
|
||||
private String tokenId;
|
||||
|
||||
@Column(name="user_name", length=255)
|
||||
private String userName;
|
||||
|
||||
public Tseaiau05() {
|
||||
}
|
||||
|
||||
public String getAuthenticationId() {
|
||||
return this.authenticationId;
|
||||
}
|
||||
|
||||
public void setAuthenticationId(String authenticationId) {
|
||||
this.authenticationId = authenticationId;
|
||||
}
|
||||
|
||||
public byte[] getAuthentication() {
|
||||
return this.authentication;
|
||||
}
|
||||
|
||||
public void setAuthentication(byte[] authentication) {
|
||||
this.authentication = authentication;
|
||||
}
|
||||
|
||||
public String getClientId() {
|
||||
return this.clientId;
|
||||
}
|
||||
|
||||
public void setClientId(String clientId) {
|
||||
this.clientId = clientId;
|
||||
}
|
||||
|
||||
public Timestamp getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Timestamp createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getRefreshToken() {
|
||||
return this.refreshToken;
|
||||
}
|
||||
|
||||
public void setRefreshToken(String refreshToken) {
|
||||
this.refreshToken = refreshToken;
|
||||
}
|
||||
|
||||
public byte[] getToken() {
|
||||
return this.token;
|
||||
}
|
||||
|
||||
public void setToken(byte[] token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public String getTokenId() {
|
||||
return this.tokenId;
|
||||
}
|
||||
|
||||
public void setTokenId(String tokenId) {
|
||||
this.tokenId = tokenId;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiau06 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiau06")
|
||||
@NamedQuery(name="Tseaiau06.findAll", query="SELECT t FROM Tseaiau06 t")
|
||||
public class Tseaiau06 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private byte[] authentication;
|
||||
|
||||
@Column(name="create_time")
|
||||
private Timestamp createTime;
|
||||
|
||||
private byte[] token;
|
||||
|
||||
@Column(name="token_id", length=255)
|
||||
private String tokenId;
|
||||
|
||||
public Tseaiau06() {
|
||||
}
|
||||
|
||||
public byte[] getAuthentication() {
|
||||
return this.authentication;
|
||||
}
|
||||
|
||||
public void setAuthentication(byte[] authentication) {
|
||||
this.authentication = authentication;
|
||||
}
|
||||
|
||||
public Timestamp getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Timestamp createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public byte[] getToken() {
|
||||
return this.token;
|
||||
}
|
||||
|
||||
public void setToken(byte[] token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public String getTokenId() {
|
||||
return this.tokenId;
|
||||
}
|
||||
|
||||
public void setTokenId(String tokenId) {
|
||||
this.tokenId = tokenId;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicl01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicl01")
|
||||
@NamedQuery(name="Tseaicl01.findAll", query="SELECT t FROM Tseaicl01 t")
|
||||
public class Tseaicl01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaicl01PK id;
|
||||
|
||||
@Column(length=50)
|
||||
private String modfiafeaisevrname;
|
||||
|
||||
@Column(length=50)
|
||||
private String modfibfeaisevrname;
|
||||
|
||||
public Tseaicl01() {
|
||||
}
|
||||
|
||||
public Tseaicl01PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaicl01PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getModfiafeaisevrname() {
|
||||
return this.modfiafeaisevrname;
|
||||
}
|
||||
|
||||
public void setModfiafeaisevrname(String modfiafeaisevrname) {
|
||||
this.modfiafeaisevrname = modfiafeaisevrname;
|
||||
}
|
||||
|
||||
public String getModfibfeaisevrname() {
|
||||
return this.modfibfeaisevrname;
|
||||
}
|
||||
|
||||
public void setModfibfeaisevrname(String modfibfeaisevrname) {
|
||||
this.modfibfeaisevrname = modfibfeaisevrname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaicl01 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaicl01PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String pafiarinfoempid;
|
||||
|
||||
@Column(unique=true, nullable=false, length=14)
|
||||
private String lastamndyms;
|
||||
|
||||
public Tseaicl01PK() {
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getPafiarinfoempid() {
|
||||
return this.pafiarinfoempid;
|
||||
}
|
||||
public void setPafiarinfoempid(String pafiarinfoempid) {
|
||||
this.pafiarinfoempid = pafiarinfoempid;
|
||||
}
|
||||
public String getLastamndyms() {
|
||||
return this.lastamndyms;
|
||||
}
|
||||
public void setLastamndyms(String lastamndyms) {
|
||||
this.lastamndyms = lastamndyms;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaicl01PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaicl01PK castOther = (Tseaicl01PK)other;
|
||||
return
|
||||
this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.pafiarinfoempid.equals(castOther.pafiarinfoempid)
|
||||
&& this.lastamndyms.equals(castOther.lastamndyms);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.pafiarinfoempid.hashCode();
|
||||
hash = hash * prime + this.lastamndyms.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm01")
|
||||
@NamedQuery(name="Tseaicm01.findAll", query="SELECT t FROM Tseaicm01 t")
|
||||
public class Tseaicm01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
@Column(length=4)
|
||||
private String applcd;
|
||||
|
||||
@Column(length=300)
|
||||
private String bzwkdsticdesc;
|
||||
|
||||
@Column(length=100)
|
||||
private String bzwkdsticname;
|
||||
|
||||
@Column(length=8)
|
||||
private String discarddate;
|
||||
|
||||
@Column(length=3)
|
||||
private String groupcocd;
|
||||
|
||||
@Column(length=5)
|
||||
private String inputdstcd;
|
||||
|
||||
@Column(name="last_mod_dtm")
|
||||
private Timestamp lastModDtm;
|
||||
|
||||
@Column(length=80)
|
||||
private String rsempname;
|
||||
|
||||
@Column(length=50)
|
||||
private String rspblpsncntpctnt;
|
||||
|
||||
@Column(length=100)
|
||||
private String trackasiskey1name;
|
||||
|
||||
@Column(length=100)
|
||||
private String trackasiskey2name;
|
||||
|
||||
public Tseaicm01() {
|
||||
}
|
||||
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public String getApplcd() {
|
||||
return this.applcd;
|
||||
}
|
||||
|
||||
public void setApplcd(String applcd) {
|
||||
this.applcd = applcd;
|
||||
}
|
||||
|
||||
public String getBzwkdsticdesc() {
|
||||
return this.bzwkdsticdesc;
|
||||
}
|
||||
|
||||
public void setBzwkdsticdesc(String bzwkdsticdesc) {
|
||||
this.bzwkdsticdesc = bzwkdsticdesc;
|
||||
}
|
||||
|
||||
public String getBzwkdsticname() {
|
||||
return this.bzwkdsticname;
|
||||
}
|
||||
|
||||
public void setBzwkdsticname(String bzwkdsticname) {
|
||||
this.bzwkdsticname = bzwkdsticname;
|
||||
}
|
||||
|
||||
public String getDiscarddate() {
|
||||
return this.discarddate;
|
||||
}
|
||||
|
||||
public void setDiscarddate(String discarddate) {
|
||||
this.discarddate = discarddate;
|
||||
}
|
||||
|
||||
public String getGroupcocd() {
|
||||
return this.groupcocd;
|
||||
}
|
||||
|
||||
public void setGroupcocd(String groupcocd) {
|
||||
this.groupcocd = groupcocd;
|
||||
}
|
||||
|
||||
public String getInputdstcd() {
|
||||
return this.inputdstcd;
|
||||
}
|
||||
|
||||
public void setInputdstcd(String inputdstcd) {
|
||||
this.inputdstcd = inputdstcd;
|
||||
}
|
||||
|
||||
public Timestamp getLastModDtm() {
|
||||
return this.lastModDtm;
|
||||
}
|
||||
|
||||
public void setLastModDtm(Timestamp lastModDtm) {
|
||||
this.lastModDtm = lastModDtm;
|
||||
}
|
||||
|
||||
public String getRsempname() {
|
||||
return this.rsempname;
|
||||
}
|
||||
|
||||
public void setRsempname(String rsempname) {
|
||||
this.rsempname = rsempname;
|
||||
}
|
||||
|
||||
public String getRspblpsncntpctnt() {
|
||||
return this.rspblpsncntpctnt;
|
||||
}
|
||||
|
||||
public void setRspblpsncntpctnt(String rspblpsncntpctnt) {
|
||||
this.rspblpsncntpctnt = rspblpsncntpctnt;
|
||||
}
|
||||
|
||||
public String getTrackasiskey1name() {
|
||||
return this.trackasiskey1name;
|
||||
}
|
||||
|
||||
public void setTrackasiskey1name(String trackasiskey1name) {
|
||||
this.trackasiskey1name = trackasiskey1name;
|
||||
}
|
||||
|
||||
public String getTrackasiskey2name() {
|
||||
return this.trackasiskey2name;
|
||||
}
|
||||
|
||||
public void setTrackasiskey2name(String trackasiskey2name) {
|
||||
this.trackasiskey2name = trackasiskey2name;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm02")
|
||||
@NamedQuery(name="Tseaicm02.findAll", query="SELECT t FROM Tseaicm02 t")
|
||||
public class Tseaicm02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String prptygroupname;
|
||||
|
||||
@Column(length=200)
|
||||
private String prptygroupdesc;
|
||||
|
||||
public Tseaicm02() {
|
||||
}
|
||||
|
||||
public String getPrptygroupname() {
|
||||
return this.prptygroupname;
|
||||
}
|
||||
|
||||
public void setPrptygroupname(String prptygroupname) {
|
||||
this.prptygroupname = prptygroupname;
|
||||
}
|
||||
|
||||
public String getPrptygroupdesc() {
|
||||
return this.prptygroupdesc;
|
||||
}
|
||||
|
||||
public void setPrptygroupdesc(String prptygroupdesc) {
|
||||
this.prptygroupdesc = prptygroupdesc;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm03")
|
||||
@NamedQuery(name="Tseaicm03.findAll", query="SELECT t FROM Tseaicm03 t")
|
||||
public class Tseaicm03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaicm03PK id;
|
||||
|
||||
@Column(length=1000)
|
||||
private String prpty2val;
|
||||
|
||||
public Tseaicm03() {
|
||||
}
|
||||
|
||||
public Tseaicm03PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaicm03PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPrpty2val() {
|
||||
return this.prpty2val;
|
||||
}
|
||||
|
||||
public void setPrpty2val(String prpty2val) {
|
||||
this.prpty2val = prpty2val;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaicm03 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaicm03PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String prptygroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String prptyname;
|
||||
|
||||
public Tseaicm03PK() {
|
||||
}
|
||||
public String getPrptygroupname() {
|
||||
return this.prptygroupname;
|
||||
}
|
||||
public void setPrptygroupname(String prptygroupname) {
|
||||
this.prptygroupname = prptygroupname;
|
||||
}
|
||||
public String getPrptyname() {
|
||||
return this.prptyname;
|
||||
}
|
||||
public void setPrptyname(String prptyname) {
|
||||
this.prptyname = prptyname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaicm03PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaicm03PK castOther = (Tseaicm03PK)other;
|
||||
return
|
||||
this.prptygroupname.equals(castOther.prptygroupname)
|
||||
&& this.prptyname.equals(castOther.prptyname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.prptygroupname.hashCode();
|
||||
hash = hash * prime + this.prptyname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm04")
|
||||
@NamedQuery(name="Tseaicm04.findAll", query="SELECT t FROM Tseaicm04 t")
|
||||
public class Tseaicm04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=300)
|
||||
private String eaisvcserno;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(length=2147483647)
|
||||
private String bzwkdatactnt;
|
||||
|
||||
@Column(length=200)
|
||||
private String bzwksvckeyname;
|
||||
|
||||
@Column(length=12)
|
||||
private String eaierrcd;
|
||||
|
||||
@Column(length=4000)
|
||||
private String eaierrctnt;
|
||||
|
||||
@Column(length=2)
|
||||
private String eaierrdstcd;
|
||||
|
||||
@Column(nullable=false, length=300)
|
||||
private String eaisevrinstncname;
|
||||
|
||||
@Column(length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(length=16)
|
||||
private String erroccurhms;
|
||||
|
||||
public Tseaicm04() {
|
||||
}
|
||||
|
||||
public String getEaisvcserno() {
|
||||
return this.eaisvcserno;
|
||||
}
|
||||
|
||||
public void setEaisvcserno(String eaisvcserno) {
|
||||
this.eaisvcserno = eaisvcserno;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getBzwkdatactnt() {
|
||||
return this.bzwkdatactnt;
|
||||
}
|
||||
|
||||
public void setBzwkdatactnt(String bzwkdatactnt) {
|
||||
this.bzwkdatactnt = bzwkdatactnt;
|
||||
}
|
||||
|
||||
public String getBzwksvckeyname() {
|
||||
return this.bzwksvckeyname;
|
||||
}
|
||||
|
||||
public void setBzwksvckeyname(String bzwksvckeyname) {
|
||||
this.bzwksvckeyname = bzwksvckeyname;
|
||||
}
|
||||
|
||||
public String getEaierrcd() {
|
||||
return this.eaierrcd;
|
||||
}
|
||||
|
||||
public void setEaierrcd(String eaierrcd) {
|
||||
this.eaierrcd = eaierrcd;
|
||||
}
|
||||
|
||||
public String getEaierrctnt() {
|
||||
return this.eaierrctnt;
|
||||
}
|
||||
|
||||
public void setEaierrctnt(String eaierrctnt) {
|
||||
this.eaierrctnt = eaierrctnt;
|
||||
}
|
||||
|
||||
public String getEaierrdstcd() {
|
||||
return this.eaierrdstcd;
|
||||
}
|
||||
|
||||
public void setEaierrdstcd(String eaierrdstcd) {
|
||||
this.eaierrdstcd = eaierrdstcd;
|
||||
}
|
||||
|
||||
public String getEaisevrinstncname() {
|
||||
return this.eaisevrinstncname;
|
||||
}
|
||||
|
||||
public void setEaisevrinstncname(String eaisevrinstncname) {
|
||||
this.eaisevrinstncname = eaisevrinstncname;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getErroccurhms() {
|
||||
return this.erroccurhms;
|
||||
}
|
||||
|
||||
public void setErroccurhms(String erroccurhms) {
|
||||
this.erroccurhms = erroccurhms;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,228 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm05 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm05")
|
||||
@NamedQuery(name="Tseaicm05.findAll", query="SELECT t FROM Tseaicm05 t")
|
||||
public class Tseaicm05 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=8)
|
||||
private String createby;
|
||||
|
||||
@Column(length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
@Column(length=100)
|
||||
private String httpcontenttype;
|
||||
|
||||
@Column(length=500)
|
||||
private String httpheaders;
|
||||
|
||||
@Column(length=10)
|
||||
private String httpmethod;
|
||||
|
||||
@Column(length=10)
|
||||
private String httpsleepseconds;
|
||||
|
||||
@Column(length=10)
|
||||
private String httpstatuscode;
|
||||
|
||||
@Column(length=18)
|
||||
private String lastamndhms;
|
||||
|
||||
@Column(length=20)
|
||||
private String loutptrnname;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String menudstcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(nullable=false, length=10)
|
||||
private String psvintfacdsticname;
|
||||
|
||||
@Column(length=4000)
|
||||
private String smltormsgctnt;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String smltormsgname;
|
||||
|
||||
private double smltormsgserno;
|
||||
|
||||
@Column(length=50)
|
||||
private String smltormsgtelgmctnt;
|
||||
|
||||
@Column(nullable=false, length=400)
|
||||
private String smltortranctnt;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String stndmsguseyn;
|
||||
|
||||
@Column(length=8)
|
||||
private String updateby;
|
||||
|
||||
public Tseaicm05() {
|
||||
}
|
||||
|
||||
public String getCreateby() {
|
||||
return this.createby;
|
||||
}
|
||||
|
||||
public void setCreateby(String createby) {
|
||||
this.createby = createby;
|
||||
}
|
||||
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public String getHttpcontenttype() {
|
||||
return this.httpcontenttype;
|
||||
}
|
||||
|
||||
public void setHttpcontenttype(String httpcontenttype) {
|
||||
this.httpcontenttype = httpcontenttype;
|
||||
}
|
||||
|
||||
public String getHttpheaders() {
|
||||
return this.httpheaders;
|
||||
}
|
||||
|
||||
public void setHttpheaders(String httpheaders) {
|
||||
this.httpheaders = httpheaders;
|
||||
}
|
||||
|
||||
public String getHttpmethod() {
|
||||
return this.httpmethod;
|
||||
}
|
||||
|
||||
public void setHttpmethod(String httpmethod) {
|
||||
this.httpmethod = httpmethod;
|
||||
}
|
||||
|
||||
public String getHttpsleepseconds() {
|
||||
return this.httpsleepseconds;
|
||||
}
|
||||
|
||||
public void setHttpsleepseconds(String httpsleepseconds) {
|
||||
this.httpsleepseconds = httpsleepseconds;
|
||||
}
|
||||
|
||||
public String getHttpstatuscode() {
|
||||
return this.httpstatuscode;
|
||||
}
|
||||
|
||||
public void setHttpstatuscode(String httpstatuscode) {
|
||||
this.httpstatuscode = httpstatuscode;
|
||||
}
|
||||
|
||||
public String getLastamndhms() {
|
||||
return this.lastamndhms;
|
||||
}
|
||||
|
||||
public void setLastamndhms(String lastamndhms) {
|
||||
this.lastamndhms = lastamndhms;
|
||||
}
|
||||
|
||||
public String getLoutptrnname() {
|
||||
return this.loutptrnname;
|
||||
}
|
||||
|
||||
public void setLoutptrnname(String loutptrnname) {
|
||||
this.loutptrnname = loutptrnname;
|
||||
}
|
||||
|
||||
public String getMenudstcd() {
|
||||
return this.menudstcd;
|
||||
}
|
||||
|
||||
public void setMenudstcd(String menudstcd) {
|
||||
this.menudstcd = menudstcd;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public String getPsvintfacdsticname() {
|
||||
return this.psvintfacdsticname;
|
||||
}
|
||||
|
||||
public void setPsvintfacdsticname(String psvintfacdsticname) {
|
||||
this.psvintfacdsticname = psvintfacdsticname;
|
||||
}
|
||||
|
||||
public String getSmltormsgctnt() {
|
||||
return this.smltormsgctnt;
|
||||
}
|
||||
|
||||
public void setSmltormsgctnt(String smltormsgctnt) {
|
||||
this.smltormsgctnt = smltormsgctnt;
|
||||
}
|
||||
|
||||
public String getSmltormsgname() {
|
||||
return this.smltormsgname;
|
||||
}
|
||||
|
||||
public void setSmltormsgname(String smltormsgname) {
|
||||
this.smltormsgname = smltormsgname;
|
||||
}
|
||||
|
||||
public double getSmltormsgserno() {
|
||||
return this.smltormsgserno;
|
||||
}
|
||||
|
||||
public void setSmltormsgserno(double smltormsgserno) {
|
||||
this.smltormsgserno = smltormsgserno;
|
||||
}
|
||||
|
||||
public String getSmltormsgtelgmctnt() {
|
||||
return this.smltormsgtelgmctnt;
|
||||
}
|
||||
|
||||
public void setSmltormsgtelgmctnt(String smltormsgtelgmctnt) {
|
||||
this.smltormsgtelgmctnt = smltormsgtelgmctnt;
|
||||
}
|
||||
|
||||
public String getSmltortranctnt() {
|
||||
return this.smltortranctnt;
|
||||
}
|
||||
|
||||
public void setSmltortranctnt(String smltortranctnt) {
|
||||
this.smltortranctnt = smltortranctnt;
|
||||
}
|
||||
|
||||
public String getStndmsguseyn() {
|
||||
return this.stndmsguseyn;
|
||||
}
|
||||
|
||||
public void setStndmsguseyn(String stndmsguseyn) {
|
||||
this.stndmsguseyn = stndmsguseyn;
|
||||
}
|
||||
|
||||
public String getUpdateby() {
|
||||
return this.updateby;
|
||||
}
|
||||
|
||||
public void setUpdateby(String updateby) {
|
||||
this.updateby = updateby;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm06 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm06")
|
||||
@NamedQuery(name="Tseaicm06.findAll", query="SELECT t FROM Tseaicm06 t")
|
||||
public class Tseaicm06 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private double gridserno;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal loutitemlencnt;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String loutitemname;
|
||||
|
||||
private double loutitemptrnserno;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String loutitemserno;
|
||||
|
||||
@Column(length=3)
|
||||
private String loutitemtype;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String loutname;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String menudstcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String smltormsgname;
|
||||
|
||||
private double smltormsgserno;
|
||||
|
||||
@Column(length=4000)
|
||||
private String testitemctnt;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String testitemmandanyn;
|
||||
|
||||
public Tseaicm06() {
|
||||
}
|
||||
|
||||
public double getGridserno() {
|
||||
return this.gridserno;
|
||||
}
|
||||
|
||||
public void setGridserno(double gridserno) {
|
||||
this.gridserno = gridserno;
|
||||
}
|
||||
|
||||
public BigDecimal getLoutitemlencnt() {
|
||||
return this.loutitemlencnt;
|
||||
}
|
||||
|
||||
public void setLoutitemlencnt(BigDecimal loutitemlencnt) {
|
||||
this.loutitemlencnt = loutitemlencnt;
|
||||
}
|
||||
|
||||
public String getLoutitemname() {
|
||||
return this.loutitemname;
|
||||
}
|
||||
|
||||
public void setLoutitemname(String loutitemname) {
|
||||
this.loutitemname = loutitemname;
|
||||
}
|
||||
|
||||
public double getLoutitemptrnserno() {
|
||||
return this.loutitemptrnserno;
|
||||
}
|
||||
|
||||
public void setLoutitemptrnserno(double loutitemptrnserno) {
|
||||
this.loutitemptrnserno = loutitemptrnserno;
|
||||
}
|
||||
|
||||
public String getLoutitemserno() {
|
||||
return this.loutitemserno;
|
||||
}
|
||||
|
||||
public void setLoutitemserno(String loutitemserno) {
|
||||
this.loutitemserno = loutitemserno;
|
||||
}
|
||||
|
||||
public String getLoutitemtype() {
|
||||
return this.loutitemtype;
|
||||
}
|
||||
|
||||
public void setLoutitemtype(String loutitemtype) {
|
||||
this.loutitemtype = loutitemtype;
|
||||
}
|
||||
|
||||
public String getLoutname() {
|
||||
return this.loutname;
|
||||
}
|
||||
|
||||
public void setLoutname(String loutname) {
|
||||
this.loutname = loutname;
|
||||
}
|
||||
|
||||
public String getMenudstcd() {
|
||||
return this.menudstcd;
|
||||
}
|
||||
|
||||
public void setMenudstcd(String menudstcd) {
|
||||
this.menudstcd = menudstcd;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public String getSmltormsgname() {
|
||||
return this.smltormsgname;
|
||||
}
|
||||
|
||||
public void setSmltormsgname(String smltormsgname) {
|
||||
this.smltormsgname = smltormsgname;
|
||||
}
|
||||
|
||||
public double getSmltormsgserno() {
|
||||
return this.smltormsgserno;
|
||||
}
|
||||
|
||||
public void setSmltormsgserno(double smltormsgserno) {
|
||||
this.smltormsgserno = smltormsgserno;
|
||||
}
|
||||
|
||||
public String getTestitemctnt() {
|
||||
return this.testitemctnt;
|
||||
}
|
||||
|
||||
public void setTestitemctnt(String testitemctnt) {
|
||||
this.testitemctnt = testitemctnt;
|
||||
}
|
||||
|
||||
public String getTestitemmandanyn() {
|
||||
return this.testitemmandanyn;
|
||||
}
|
||||
|
||||
public void setTestitemmandanyn(String testitemmandanyn) {
|
||||
this.testitemmandanyn = testitemmandanyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm07 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm07")
|
||||
@NamedQuery(name="Tseaicm07.findAll", query="SELECT t FROM Tseaicm07 t")
|
||||
public class Tseaicm07 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=4000)
|
||||
private String bzwkdatactnt;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(nullable=false, length=40)
|
||||
private String smltorserno;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String sndrcvdstcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String supplbzwkdatayn;
|
||||
|
||||
@Column(length=15)
|
||||
private String termlip;
|
||||
|
||||
@Column(nullable=false, length=17)
|
||||
private String termltranyms;
|
||||
|
||||
public Tseaicm07() {
|
||||
}
|
||||
|
||||
public String getBzwkdatactnt() {
|
||||
return this.bzwkdatactnt;
|
||||
}
|
||||
|
||||
public void setBzwkdatactnt(String bzwkdatactnt) {
|
||||
this.bzwkdatactnt = bzwkdatactnt;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public String getSmltorserno() {
|
||||
return this.smltorserno;
|
||||
}
|
||||
|
||||
public void setSmltorserno(String smltorserno) {
|
||||
this.smltorserno = smltorserno;
|
||||
}
|
||||
|
||||
public String getSndrcvdstcd() {
|
||||
return this.sndrcvdstcd;
|
||||
}
|
||||
|
||||
public void setSndrcvdstcd(String sndrcvdstcd) {
|
||||
this.sndrcvdstcd = sndrcvdstcd;
|
||||
}
|
||||
|
||||
public String getSupplbzwkdatayn() {
|
||||
return this.supplbzwkdatayn;
|
||||
}
|
||||
|
||||
public void setSupplbzwkdatayn(String supplbzwkdatayn) {
|
||||
this.supplbzwkdatayn = supplbzwkdatayn;
|
||||
}
|
||||
|
||||
public String getTermlip() {
|
||||
return this.termlip;
|
||||
}
|
||||
|
||||
public void setTermlip(String termlip) {
|
||||
this.termlip = termlip;
|
||||
}
|
||||
|
||||
public String getTermltranyms() {
|
||||
return this.termltranyms;
|
||||
}
|
||||
|
||||
public void setTermltranyms(String termltranyms) {
|
||||
this.termltranyms = termltranyms;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm08 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm08")
|
||||
@NamedQuery(name="Tseaicm08.findAll", query="SELECT t FROM Tseaicm08 t")
|
||||
public class Tseaicm08 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=4000)
|
||||
private String bzwkdatactnt;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(nullable=false, precision=10)
|
||||
private BigDecimal smlindex;
|
||||
|
||||
@Column(nullable=false, length=40)
|
||||
private String smltorserno;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String sndrcvdstcd;
|
||||
|
||||
public Tseaicm08() {
|
||||
}
|
||||
|
||||
public String getBzwkdatactnt() {
|
||||
return this.bzwkdatactnt;
|
||||
}
|
||||
|
||||
public void setBzwkdatactnt(String bzwkdatactnt) {
|
||||
this.bzwkdatactnt = bzwkdatactnt;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public BigDecimal getSmlindex() {
|
||||
return this.smlindex;
|
||||
}
|
||||
|
||||
public void setSmlindex(BigDecimal smlindex) {
|
||||
this.smlindex = smlindex;
|
||||
}
|
||||
|
||||
public String getSmltorserno() {
|
||||
return this.smltorserno;
|
||||
}
|
||||
|
||||
public void setSmltorserno(String smltorserno) {
|
||||
this.smltorserno = smltorserno;
|
||||
}
|
||||
|
||||
public String getSndrcvdstcd() {
|
||||
return this.sndrcvdstcd;
|
||||
}
|
||||
|
||||
public void setSndrcvdstcd(String sndrcvdstcd) {
|
||||
this.sndrcvdstcd = sndrcvdstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm09 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm09")
|
||||
@NamedQuery(name="Tseaicm09.findAll", query="SELECT t FROM Tseaicm09 t")
|
||||
public class Tseaicm09 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=30)
|
||||
private String errsmltormsgname;
|
||||
|
||||
private double errsmltormsgserno;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal msgfldlen1;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal msgfldlen2;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal msgfldstartsituval1;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal msgfldstartsituval2;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String responsetype;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal sleeptime;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String srcsmltormsgname;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String trgsmltormsgname;
|
||||
|
||||
private double trgsmltormsgserno;
|
||||
|
||||
public Tseaicm09() {
|
||||
}
|
||||
|
||||
public String getErrsmltormsgname() {
|
||||
return this.errsmltormsgname;
|
||||
}
|
||||
|
||||
public void setErrsmltormsgname(String errsmltormsgname) {
|
||||
this.errsmltormsgname = errsmltormsgname;
|
||||
}
|
||||
|
||||
public double getErrsmltormsgserno() {
|
||||
return this.errsmltormsgserno;
|
||||
}
|
||||
|
||||
public void setErrsmltormsgserno(double errsmltormsgserno) {
|
||||
this.errsmltormsgserno = errsmltormsgserno;
|
||||
}
|
||||
|
||||
public BigDecimal getMsgfldlen1() {
|
||||
return this.msgfldlen1;
|
||||
}
|
||||
|
||||
public void setMsgfldlen1(BigDecimal msgfldlen1) {
|
||||
this.msgfldlen1 = msgfldlen1;
|
||||
}
|
||||
|
||||
public BigDecimal getMsgfldlen2() {
|
||||
return this.msgfldlen2;
|
||||
}
|
||||
|
||||
public void setMsgfldlen2(BigDecimal msgfldlen2) {
|
||||
this.msgfldlen2 = msgfldlen2;
|
||||
}
|
||||
|
||||
public BigDecimal getMsgfldstartsituval1() {
|
||||
return this.msgfldstartsituval1;
|
||||
}
|
||||
|
||||
public void setMsgfldstartsituval1(BigDecimal msgfldstartsituval1) {
|
||||
this.msgfldstartsituval1 = msgfldstartsituval1;
|
||||
}
|
||||
|
||||
public BigDecimal getMsgfldstartsituval2() {
|
||||
return this.msgfldstartsituval2;
|
||||
}
|
||||
|
||||
public void setMsgfldstartsituval2(BigDecimal msgfldstartsituval2) {
|
||||
this.msgfldstartsituval2 = msgfldstartsituval2;
|
||||
}
|
||||
|
||||
public String getResponsetype() {
|
||||
return this.responsetype;
|
||||
}
|
||||
|
||||
public void setResponsetype(String responsetype) {
|
||||
this.responsetype = responsetype;
|
||||
}
|
||||
|
||||
public BigDecimal getSleeptime() {
|
||||
return this.sleeptime;
|
||||
}
|
||||
|
||||
public void setSleeptime(BigDecimal sleeptime) {
|
||||
this.sleeptime = sleeptime;
|
||||
}
|
||||
|
||||
public String getSrcsmltormsgname() {
|
||||
return this.srcsmltormsgname;
|
||||
}
|
||||
|
||||
public void setSrcsmltormsgname(String srcsmltormsgname) {
|
||||
this.srcsmltormsgname = srcsmltormsgname;
|
||||
}
|
||||
|
||||
public String getTrgsmltormsgname() {
|
||||
return this.trgsmltormsgname;
|
||||
}
|
||||
|
||||
public void setTrgsmltormsgname(String trgsmltormsgname) {
|
||||
this.trgsmltormsgname = trgsmltormsgname;
|
||||
}
|
||||
|
||||
public double getTrgsmltormsgserno() {
|
||||
return this.trgsmltormsgserno;
|
||||
}
|
||||
|
||||
public void setTrgsmltormsgserno(double trgsmltormsgserno) {
|
||||
this.trgsmltormsgserno = trgsmltormsgserno;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,150 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm10 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm10")
|
||||
@NamedQuery(name="Tseaicm10.findAll", query="SELECT t FROM Tseaicm10 t")
|
||||
public class Tseaicm10 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private double gridserno;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String loutitemname;
|
||||
|
||||
private double loutitemptrnserno;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal loutitemserno;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String loutitemtype;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String loutname;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String menudstcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String smltormsgname;
|
||||
|
||||
private double smltormsgserno;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String typeserno;
|
||||
|
||||
@Column(length=4000)
|
||||
private String typevalue;
|
||||
|
||||
public Tseaicm10() {
|
||||
}
|
||||
|
||||
public double getGridserno() {
|
||||
return this.gridserno;
|
||||
}
|
||||
|
||||
public void setGridserno(double gridserno) {
|
||||
this.gridserno = gridserno;
|
||||
}
|
||||
|
||||
public String getLoutitemname() {
|
||||
return this.loutitemname;
|
||||
}
|
||||
|
||||
public void setLoutitemname(String loutitemname) {
|
||||
this.loutitemname = loutitemname;
|
||||
}
|
||||
|
||||
public double getLoutitemptrnserno() {
|
||||
return this.loutitemptrnserno;
|
||||
}
|
||||
|
||||
public void setLoutitemptrnserno(double loutitemptrnserno) {
|
||||
this.loutitemptrnserno = loutitemptrnserno;
|
||||
}
|
||||
|
||||
public BigDecimal getLoutitemserno() {
|
||||
return this.loutitemserno;
|
||||
}
|
||||
|
||||
public void setLoutitemserno(BigDecimal loutitemserno) {
|
||||
this.loutitemserno = loutitemserno;
|
||||
}
|
||||
|
||||
public String getLoutitemtype() {
|
||||
return this.loutitemtype;
|
||||
}
|
||||
|
||||
public void setLoutitemtype(String loutitemtype) {
|
||||
this.loutitemtype = loutitemtype;
|
||||
}
|
||||
|
||||
public String getLoutname() {
|
||||
return this.loutname;
|
||||
}
|
||||
|
||||
public void setLoutname(String loutname) {
|
||||
this.loutname = loutname;
|
||||
}
|
||||
|
||||
public String getMenudstcd() {
|
||||
return this.menudstcd;
|
||||
}
|
||||
|
||||
public void setMenudstcd(String menudstcd) {
|
||||
this.menudstcd = menudstcd;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public String getSmltormsgname() {
|
||||
return this.smltormsgname;
|
||||
}
|
||||
|
||||
public void setSmltormsgname(String smltormsgname) {
|
||||
this.smltormsgname = smltormsgname;
|
||||
}
|
||||
|
||||
public double getSmltormsgserno() {
|
||||
return this.smltormsgserno;
|
||||
}
|
||||
|
||||
public void setSmltormsgserno(double smltormsgserno) {
|
||||
this.smltormsgserno = smltormsgserno;
|
||||
}
|
||||
|
||||
public String getTypeserno() {
|
||||
return this.typeserno;
|
||||
}
|
||||
|
||||
public void setTypeserno(String typeserno) {
|
||||
this.typeserno = typeserno;
|
||||
}
|
||||
|
||||
public String getTypevalue() {
|
||||
return this.typevalue;
|
||||
}
|
||||
|
||||
public void setTypevalue(String typevalue) {
|
||||
this.typevalue = typevalue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm11 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm11")
|
||||
@NamedQuery(name="Tseaicm11.findAll", query="SELECT t FROM Tseaicm11 t")
|
||||
public class Tseaicm11 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=4)
|
||||
private String chnlcode;
|
||||
|
||||
@Column(nullable=false, length=8)
|
||||
private String lastupdate;
|
||||
|
||||
@Column(nullable=false, precision=10)
|
||||
private BigDecimal seq;
|
||||
|
||||
public Tseaicm11() {
|
||||
}
|
||||
|
||||
public String getChnlcode() {
|
||||
return this.chnlcode;
|
||||
}
|
||||
|
||||
public void setChnlcode(String chnlcode) {
|
||||
this.chnlcode = chnlcode;
|
||||
}
|
||||
|
||||
public String getLastupdate() {
|
||||
return this.lastupdate;
|
||||
}
|
||||
|
||||
public void setLastupdate(String lastupdate) {
|
||||
this.lastupdate = lastupdate;
|
||||
}
|
||||
|
||||
public BigDecimal getSeq() {
|
||||
return this.seq;
|
||||
}
|
||||
|
||||
public void setSeq(BigDecimal seq) {
|
||||
this.seq = seq;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm12 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm12")
|
||||
@NamedQuery(name="Tseaicm12.findAll", query="SELECT t FROM Tseaicm12 t")
|
||||
public class Tseaicm12 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=50)
|
||||
private String loutitemname;
|
||||
|
||||
@Column(length=3)
|
||||
private String loutitemserno;
|
||||
|
||||
@Column(length=50)
|
||||
private String loutname;
|
||||
|
||||
@Column(length=3)
|
||||
private String menudstcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String msgiodstcd;
|
||||
|
||||
@Column(length=30)
|
||||
private String smltormsgname;
|
||||
|
||||
private double smltormsgserno;
|
||||
|
||||
@Column(length=4000)
|
||||
private String testitemctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String testitemmandanyn;
|
||||
|
||||
private double testitemserno;
|
||||
|
||||
public Tseaicm12() {
|
||||
}
|
||||
|
||||
public String getLoutitemname() {
|
||||
return this.loutitemname;
|
||||
}
|
||||
|
||||
public void setLoutitemname(String loutitemname) {
|
||||
this.loutitemname = loutitemname;
|
||||
}
|
||||
|
||||
public String getLoutitemserno() {
|
||||
return this.loutitemserno;
|
||||
}
|
||||
|
||||
public void setLoutitemserno(String loutitemserno) {
|
||||
this.loutitemserno = loutitemserno;
|
||||
}
|
||||
|
||||
public String getLoutname() {
|
||||
return this.loutname;
|
||||
}
|
||||
|
||||
public void setLoutname(String loutname) {
|
||||
this.loutname = loutname;
|
||||
}
|
||||
|
||||
public String getMenudstcd() {
|
||||
return this.menudstcd;
|
||||
}
|
||||
|
||||
public void setMenudstcd(String menudstcd) {
|
||||
this.menudstcd = menudstcd;
|
||||
}
|
||||
|
||||
public String getMsgiodstcd() {
|
||||
return this.msgiodstcd;
|
||||
}
|
||||
|
||||
public void setMsgiodstcd(String msgiodstcd) {
|
||||
this.msgiodstcd = msgiodstcd;
|
||||
}
|
||||
|
||||
public String getSmltormsgname() {
|
||||
return this.smltormsgname;
|
||||
}
|
||||
|
||||
public void setSmltormsgname(String smltormsgname) {
|
||||
this.smltormsgname = smltormsgname;
|
||||
}
|
||||
|
||||
public double getSmltormsgserno() {
|
||||
return this.smltormsgserno;
|
||||
}
|
||||
|
||||
public void setSmltormsgserno(double smltormsgserno) {
|
||||
this.smltormsgserno = smltormsgserno;
|
||||
}
|
||||
|
||||
public String getTestitemctnt() {
|
||||
return this.testitemctnt;
|
||||
}
|
||||
|
||||
public void setTestitemctnt(String testitemctnt) {
|
||||
this.testitemctnt = testitemctnt;
|
||||
}
|
||||
|
||||
public String getTestitemmandanyn() {
|
||||
return this.testitemmandanyn;
|
||||
}
|
||||
|
||||
public void setTestitemmandanyn(String testitemmandanyn) {
|
||||
this.testitemmandanyn = testitemmandanyn;
|
||||
}
|
||||
|
||||
public double getTestitemserno() {
|
||||
return this.testitemserno;
|
||||
}
|
||||
|
||||
public void setTestitemserno(double testitemserno) {
|
||||
this.testitemserno = testitemserno;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm13 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm13")
|
||||
@NamedQuery(name="Tseaicm13.findAll", query="SELECT t FROM Tseaicm13 t")
|
||||
public class Tseaicm13 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=200)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
private double msgfldlen;
|
||||
|
||||
private double msgfldoffset;
|
||||
|
||||
private double msgfldrnk;
|
||||
|
||||
private double msgfldserno;
|
||||
|
||||
@Column(length=3)
|
||||
private String msgfldtype;
|
||||
|
||||
@Column(length=200)
|
||||
private String msgfldvalue;
|
||||
|
||||
@Column(length=3)
|
||||
private String otsdchnlinstcd;
|
||||
|
||||
public Tseaicm13() {
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public double getMsgfldlen() {
|
||||
return this.msgfldlen;
|
||||
}
|
||||
|
||||
public void setMsgfldlen(double msgfldlen) {
|
||||
this.msgfldlen = msgfldlen;
|
||||
}
|
||||
|
||||
public double getMsgfldoffset() {
|
||||
return this.msgfldoffset;
|
||||
}
|
||||
|
||||
public void setMsgfldoffset(double msgfldoffset) {
|
||||
this.msgfldoffset = msgfldoffset;
|
||||
}
|
||||
|
||||
public double getMsgfldrnk() {
|
||||
return this.msgfldrnk;
|
||||
}
|
||||
|
||||
public void setMsgfldrnk(double msgfldrnk) {
|
||||
this.msgfldrnk = msgfldrnk;
|
||||
}
|
||||
|
||||
public double getMsgfldserno() {
|
||||
return this.msgfldserno;
|
||||
}
|
||||
|
||||
public void setMsgfldserno(double msgfldserno) {
|
||||
this.msgfldserno = msgfldserno;
|
||||
}
|
||||
|
||||
public String getMsgfldtype() {
|
||||
return this.msgfldtype;
|
||||
}
|
||||
|
||||
public void setMsgfldtype(String msgfldtype) {
|
||||
this.msgfldtype = msgfldtype;
|
||||
}
|
||||
|
||||
public String getMsgfldvalue() {
|
||||
return this.msgfldvalue;
|
||||
}
|
||||
|
||||
public void setMsgfldvalue(String msgfldvalue) {
|
||||
this.msgfldvalue = msgfldvalue;
|
||||
}
|
||||
|
||||
public String getOtsdchnlinstcd() {
|
||||
return this.otsdchnlinstcd;
|
||||
}
|
||||
|
||||
public void setOtsdchnlinstcd(String otsdchnlinstcd) {
|
||||
this.otsdchnlinstcd = otsdchnlinstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm14 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm14")
|
||||
@NamedQuery(name="Tseaicm14.findAll", query="SELECT t FROM Tseaicm14 t")
|
||||
public class Tseaicm14 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String smltormsgname;
|
||||
|
||||
@Column(nullable=false)
|
||||
private double smltormsgserno;
|
||||
|
||||
public Tseaicm14() {
|
||||
}
|
||||
|
||||
public String getSmltormsgname() {
|
||||
return this.smltormsgname;
|
||||
}
|
||||
|
||||
public void setSmltormsgname(String smltormsgname) {
|
||||
this.smltormsgname = smltormsgname;
|
||||
}
|
||||
|
||||
public double getSmltormsgserno() {
|
||||
return this.smltormsgserno;
|
||||
}
|
||||
|
||||
public void setSmltormsgserno(double smltormsgserno) {
|
||||
this.smltormsgserno = smltormsgserno;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm15 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm15")
|
||||
@NamedQuery(name="Tseaicm15.findAll", query="SELECT t FROM Tseaicm15 t")
|
||||
public class Tseaicm15 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=40)
|
||||
private String uuid;
|
||||
|
||||
@Column(length=20)
|
||||
private String interfaceid;
|
||||
|
||||
private Timestamp logdate;
|
||||
|
||||
@Column(length=400)
|
||||
private String message;
|
||||
|
||||
@Column(length=10)
|
||||
private String type;
|
||||
|
||||
@Column(length=20)
|
||||
private String userid;
|
||||
|
||||
public Tseaicm15() {
|
||||
}
|
||||
|
||||
public String getUuid() {
|
||||
return this.uuid;
|
||||
}
|
||||
|
||||
public void setUuid(String uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
|
||||
public String getInterfaceid() {
|
||||
return this.interfaceid;
|
||||
}
|
||||
|
||||
public void setInterfaceid(String interfaceid) {
|
||||
this.interfaceid = interfaceid;
|
||||
}
|
||||
|
||||
public Timestamp getLogdate() {
|
||||
return this.logdate;
|
||||
}
|
||||
|
||||
public void setLogdate(Timestamp logdate) {
|
||||
this.logdate = logdate;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return this.message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm19 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm19")
|
||||
@NamedQuery(name="Tseaicm19.findAll", query="SELECT t FROM Tseaicm19 t")
|
||||
public class Tseaicm19 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String codegroup;
|
||||
|
||||
@Column(length=1000)
|
||||
private String description;
|
||||
|
||||
public Tseaicm19() {
|
||||
}
|
||||
|
||||
public String getCodegroup() {
|
||||
return this.codegroup;
|
||||
}
|
||||
|
||||
public void setCodegroup(String codegroup) {
|
||||
this.codegroup = codegroup;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,197 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm20 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm20")
|
||||
@NamedQuery(name="Tseaicm20.findAll", query="SELECT t FROM Tseaicm20 t")
|
||||
public class Tseaicm20 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaicm20PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String codename;
|
||||
|
||||
@Column(name="codename_en", length=200)
|
||||
private String codenameEn;
|
||||
|
||||
@Column(length=8)
|
||||
private String createby;
|
||||
|
||||
@Column(length=14)
|
||||
private String createon;
|
||||
|
||||
@Column(length=50)
|
||||
private String ext1;
|
||||
|
||||
@Column(length=50)
|
||||
private String ext2;
|
||||
|
||||
@Column(length=50)
|
||||
private String ext3;
|
||||
|
||||
@Column(length=50)
|
||||
private String ext4;
|
||||
|
||||
@Column(length=50)
|
||||
private String ext5;
|
||||
|
||||
@Column(length=50)
|
||||
private String parentcode;
|
||||
|
||||
@Column(length=50)
|
||||
private String parentcodegroup;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal seq;
|
||||
|
||||
@Column(length=8)
|
||||
private String updateby;
|
||||
|
||||
@Column(length=14)
|
||||
private String updateon;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
public Tseaicm20() {
|
||||
}
|
||||
|
||||
public Tseaicm20PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaicm20PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCodename() {
|
||||
return this.codename;
|
||||
}
|
||||
|
||||
public void setCodename(String codename) {
|
||||
this.codename = codename;
|
||||
}
|
||||
|
||||
public String getCodenameEn() {
|
||||
return this.codenameEn;
|
||||
}
|
||||
|
||||
public void setCodenameEn(String codenameEn) {
|
||||
this.codenameEn = codenameEn;
|
||||
}
|
||||
|
||||
public String getCreateby() {
|
||||
return this.createby;
|
||||
}
|
||||
|
||||
public void setCreateby(String createby) {
|
||||
this.createby = createby;
|
||||
}
|
||||
|
||||
public String getCreateon() {
|
||||
return this.createon;
|
||||
}
|
||||
|
||||
public void setCreateon(String createon) {
|
||||
this.createon = createon;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getParentcode() {
|
||||
return this.parentcode;
|
||||
}
|
||||
|
||||
public void setParentcode(String parentcode) {
|
||||
this.parentcode = parentcode;
|
||||
}
|
||||
|
||||
public String getParentcodegroup() {
|
||||
return this.parentcodegroup;
|
||||
}
|
||||
|
||||
public void setParentcodegroup(String parentcodegroup) {
|
||||
this.parentcodegroup = parentcodegroup;
|
||||
}
|
||||
|
||||
public BigDecimal getSeq() {
|
||||
return this.seq;
|
||||
}
|
||||
|
||||
public void setSeq(BigDecimal seq) {
|
||||
this.seq = seq;
|
||||
}
|
||||
|
||||
public String getUpdateby() {
|
||||
return this.updateby;
|
||||
}
|
||||
|
||||
public void setUpdateby(String updateby) {
|
||||
this.updateby = updateby;
|
||||
}
|
||||
|
||||
public String getUpdateon() {
|
||||
return this.updateon;
|
||||
}
|
||||
|
||||
public void setUpdateon(String updateon) {
|
||||
this.updateon = updateon;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaicm20 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaicm20PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String codegroup;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String code;
|
||||
|
||||
public Tseaicm20PK() {
|
||||
}
|
||||
public String getCodegroup() {
|
||||
return this.codegroup;
|
||||
}
|
||||
public void setCodegroup(String codegroup) {
|
||||
this.codegroup = codegroup;
|
||||
}
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaicm20PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaicm20PK castOther = (Tseaicm20PK)other;
|
||||
return
|
||||
this.codegroup.equals(castOther.codegroup)
|
||||
&& this.code.equals(castOther.code);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.codegroup.hashCode();
|
||||
hash = hash * prime + this.code.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaicm23 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaicm23")
|
||||
@NamedQuery(name="Tseaicm23.findAll", query="SELECT t FROM Tseaicm23 t")
|
||||
public class Tseaicm23 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String domainnm;
|
||||
|
||||
@Column(length=10)
|
||||
private String domainoption;
|
||||
|
||||
@Column(length=10)
|
||||
private String domaintype;
|
||||
|
||||
@Column(length=1000)
|
||||
private String domainval;
|
||||
|
||||
public Tseaicm23() {
|
||||
}
|
||||
|
||||
public String getDomainnm() {
|
||||
return this.domainnm;
|
||||
}
|
||||
|
||||
public void setDomainnm(String domainnm) {
|
||||
this.domainnm = domainnm;
|
||||
}
|
||||
|
||||
public String getDomainoption() {
|
||||
return this.domainoption;
|
||||
}
|
||||
|
||||
public void setDomainoption(String domainoption) {
|
||||
this.domainoption = domainoption;
|
||||
}
|
||||
|
||||
public String getDomaintype() {
|
||||
return this.domaintype;
|
||||
}
|
||||
|
||||
public void setDomaintype(String domaintype) {
|
||||
this.domaintype = domaintype;
|
||||
}
|
||||
|
||||
public String getDomainval() {
|
||||
return this.domainval;
|
||||
}
|
||||
|
||||
public void setDomainval(String domainval) {
|
||||
this.domainval = domainval;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaidc01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaidc01")
|
||||
@NamedQuery(name="Tseaidc01.findAll", query="SELECT t FROM Tseaidc01 t")
|
||||
public class Tseaidc01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(length=8)
|
||||
private String splizvaldymd;
|
||||
|
||||
public Tseaidc01() {
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getSplizvaldymd() {
|
||||
return this.splizvaldymd;
|
||||
}
|
||||
|
||||
public void setSplizvaldymd(String splizvaldymd) {
|
||||
this.splizvaldymd = splizvaldymd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaidc02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaidc02")
|
||||
@NamedQuery(name="Tseaidc02.findAll", query="SELECT t FROM Tseaidc02 t")
|
||||
public class Tseaidc02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=40)
|
||||
private String evntrecvsysname;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaievntprcssdstcd;
|
||||
|
||||
@Column(length=200)
|
||||
private String evntrecvsysctnt;
|
||||
|
||||
public Tseaidc02() {
|
||||
}
|
||||
|
||||
public String getEvntrecvsysname() {
|
||||
return this.evntrecvsysname;
|
||||
}
|
||||
|
||||
public void setEvntrecvsysname(String evntrecvsysname) {
|
||||
this.evntrecvsysname = evntrecvsysname;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getEaievntprcssdstcd() {
|
||||
return this.eaievntprcssdstcd;
|
||||
}
|
||||
|
||||
public void setEaievntprcssdstcd(String eaievntprcssdstcd) {
|
||||
this.eaievntprcssdstcd = eaievntprcssdstcd;
|
||||
}
|
||||
|
||||
public String getEvntrecvsysctnt() {
|
||||
return this.evntrecvsysctnt;
|
||||
}
|
||||
|
||||
public void setEvntrecvsysctnt(String evntrecvsysctnt) {
|
||||
this.evntrecvsysctnt = evntrecvsysctnt;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaidc03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaidc03")
|
||||
@NamedQuery(name="Tseaidc03.findAll", query="SELECT t FROM Tseaidc03 t")
|
||||
public class Tseaidc03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaidc03PK id;
|
||||
|
||||
@Column(length=14)
|
||||
private String evntprcssrsultdpstyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String prcssrsultyn;
|
||||
|
||||
public Tseaidc03() {
|
||||
}
|
||||
|
||||
public Tseaidc03PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaidc03PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getEvntprcssrsultdpstyms() {
|
||||
return this.evntprcssrsultdpstyms;
|
||||
}
|
||||
|
||||
public void setEvntprcssrsultdpstyms(String evntprcssrsultdpstyms) {
|
||||
this.evntprcssrsultdpstyms = evntprcssrsultdpstyms;
|
||||
}
|
||||
|
||||
public String getPrcssrsultyn() {
|
||||
return this.prcssrsultyn;
|
||||
}
|
||||
|
||||
public void setPrcssrsultyn(String prcssrsultyn) {
|
||||
this.prcssrsultyn = prcssrsultyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaidc03 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaidc03PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=40)
|
||||
private String evntrecvsysname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String eaievntdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=14)
|
||||
private String evntsendyms;
|
||||
|
||||
public Tseaidc03PK() {
|
||||
}
|
||||
public String getEvntrecvsysname() {
|
||||
return this.evntrecvsysname;
|
||||
}
|
||||
public void setEvntrecvsysname(String evntrecvsysname) {
|
||||
this.evntrecvsysname = evntrecvsysname;
|
||||
}
|
||||
public String getEaievntdstcd() {
|
||||
return this.eaievntdstcd;
|
||||
}
|
||||
public void setEaievntdstcd(String eaievntdstcd) {
|
||||
this.eaievntdstcd = eaievntdstcd;
|
||||
}
|
||||
public String getEvntsendyms() {
|
||||
return this.evntsendyms;
|
||||
}
|
||||
public void setEvntsendyms(String evntsendyms) {
|
||||
this.evntsendyms = evntsendyms;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaidc03PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaidc03PK castOther = (Tseaidc03PK)other;
|
||||
return
|
||||
this.evntrecvsysname.equals(castOther.evntrecvsysname)
|
||||
&& this.eaievntdstcd.equals(castOther.eaievntdstcd)
|
||||
&& this.evntsendyms.equals(castOther.evntsendyms);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.evntrecvsysname.hashCode();
|
||||
hash = hash * prime + this.eaievntdstcd.hashCode();
|
||||
hash = hash * prime + this.evntsendyms.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaidr01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaidr01")
|
||||
@NamedQuery(name="Tseaidr01.findAll", query="SELECT t FROM Tseaidr01 t")
|
||||
public class Tseaidr01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaidr01PK id;
|
||||
|
||||
@Column(length=15)
|
||||
private String mcitrancd;
|
||||
|
||||
@Column(length=100)
|
||||
private String screnname;
|
||||
|
||||
public Tseaidr01() {
|
||||
}
|
||||
|
||||
public Tseaidr01PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaidr01PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getMcitrancd() {
|
||||
return this.mcitrancd;
|
||||
}
|
||||
|
||||
public void setMcitrancd(String mcitrancd) {
|
||||
this.mcitrancd = mcitrancd;
|
||||
}
|
||||
|
||||
public String getScrenname() {
|
||||
return this.screnname;
|
||||
}
|
||||
|
||||
public void setScrenname(String screnname) {
|
||||
this.screnname = screnname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaidr01 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaidr01PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String baseymd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String occursysdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String eaisysdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String sysobstclptrndstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=36)
|
||||
private String guid;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=12)
|
||||
private String osidinstino;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
public Tseaidr01PK() {
|
||||
}
|
||||
public String getBaseymd() {
|
||||
return this.baseymd;
|
||||
}
|
||||
public void setBaseymd(String baseymd) {
|
||||
this.baseymd = baseymd;
|
||||
}
|
||||
public String getOccursysdstcd() {
|
||||
return this.occursysdstcd;
|
||||
}
|
||||
public void setOccursysdstcd(String occursysdstcd) {
|
||||
this.occursysdstcd = occursysdstcd;
|
||||
}
|
||||
public String getEaisysdstcd() {
|
||||
return this.eaisysdstcd;
|
||||
}
|
||||
public void setEaisysdstcd(String eaisysdstcd) {
|
||||
this.eaisysdstcd = eaisysdstcd;
|
||||
}
|
||||
public String getSysobstclptrndstcd() {
|
||||
return this.sysobstclptrndstcd;
|
||||
}
|
||||
public void setSysobstclptrndstcd(String sysobstclptrndstcd) {
|
||||
this.sysobstclptrndstcd = sysobstclptrndstcd;
|
||||
}
|
||||
public String getGuid() {
|
||||
return this.guid;
|
||||
}
|
||||
public void setGuid(String guid) {
|
||||
this.guid = guid;
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getOsidinstino() {
|
||||
return this.osidinstino;
|
||||
}
|
||||
public void setOsidinstino(String osidinstino) {
|
||||
this.osidinstino = osidinstino;
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaidr01PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaidr01PK castOther = (Tseaidr01PK)other;
|
||||
return
|
||||
this.baseymd.equals(castOther.baseymd)
|
||||
&& this.occursysdstcd.equals(castOther.occursysdstcd)
|
||||
&& this.eaisysdstcd.equals(castOther.eaisysdstcd)
|
||||
&& this.sysobstclptrndstcd.equals(castOther.sysobstclptrndstcd)
|
||||
&& this.guid.equals(castOther.guid)
|
||||
&& this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.osidinstino.equals(castOther.osidinstino)
|
||||
&& this.eaisvcname.equals(castOther.eaisvcname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.baseymd.hashCode();
|
||||
hash = hash * prime + this.occursysdstcd.hashCode();
|
||||
hash = hash * prime + this.eaisysdstcd.hashCode();
|
||||
hash = hash * prime + this.sysobstclptrndstcd.hashCode();
|
||||
hash = hash * prime + this.guid.hashCode();
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.osidinstino.hashCode();
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaidr02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaidr02")
|
||||
@NamedQuery(name="Tseaidr02.findAll", query="SELECT t FROM Tseaidr02 t")
|
||||
public class Tseaidr02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaidr02PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String rmarkitemctnt;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal wholprcssnoitm;
|
||||
|
||||
public Tseaidr02() {
|
||||
}
|
||||
|
||||
public Tseaidr02PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaidr02PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRmarkitemctnt() {
|
||||
return this.rmarkitemctnt;
|
||||
}
|
||||
|
||||
public void setRmarkitemctnt(String rmarkitemctnt) {
|
||||
this.rmarkitemctnt = rmarkitemctnt;
|
||||
}
|
||||
|
||||
public BigDecimal getWholprcssnoitm() {
|
||||
return this.wholprcssnoitm;
|
||||
}
|
||||
|
||||
public void setWholprcssnoitm(BigDecimal wholprcssnoitm) {
|
||||
this.wholprcssnoitm = wholprcssnoitm;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaidr02 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaidr02PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String baseymd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String occursysdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String eaisysdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String sysobstclptrndstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=12)
|
||||
private String osidinstino;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
public Tseaidr02PK() {
|
||||
}
|
||||
public String getBaseymd() {
|
||||
return this.baseymd;
|
||||
}
|
||||
public void setBaseymd(String baseymd) {
|
||||
this.baseymd = baseymd;
|
||||
}
|
||||
public String getOccursysdstcd() {
|
||||
return this.occursysdstcd;
|
||||
}
|
||||
public void setOccursysdstcd(String occursysdstcd) {
|
||||
this.occursysdstcd = occursysdstcd;
|
||||
}
|
||||
public String getEaisysdstcd() {
|
||||
return this.eaisysdstcd;
|
||||
}
|
||||
public void setEaisysdstcd(String eaisysdstcd) {
|
||||
this.eaisysdstcd = eaisysdstcd;
|
||||
}
|
||||
public String getSysobstclptrndstcd() {
|
||||
return this.sysobstclptrndstcd;
|
||||
}
|
||||
public void setSysobstclptrndstcd(String sysobstclptrndstcd) {
|
||||
this.sysobstclptrndstcd = sysobstclptrndstcd;
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getOsidinstino() {
|
||||
return this.osidinstino;
|
||||
}
|
||||
public void setOsidinstino(String osidinstino) {
|
||||
this.osidinstino = osidinstino;
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaidr02PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaidr02PK castOther = (Tseaidr02PK)other;
|
||||
return
|
||||
this.baseymd.equals(castOther.baseymd)
|
||||
&& this.occursysdstcd.equals(castOther.occursysdstcd)
|
||||
&& this.eaisysdstcd.equals(castOther.eaisysdstcd)
|
||||
&& this.sysobstclptrndstcd.equals(castOther.sysobstclptrndstcd)
|
||||
&& this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.osidinstino.equals(castOther.osidinstino)
|
||||
&& this.eaisvcname.equals(castOther.eaisvcname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.baseymd.hashCode();
|
||||
hash = hash * prime + this.occursysdstcd.hashCode();
|
||||
hash = hash * prime + this.eaisysdstcd.hashCode();
|
||||
hash = hash * prime + this.sysobstclptrndstcd.hashCode();
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.osidinstino.hashCode();
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr01")
|
||||
@NamedQuery(name="Tseaifr01.findAll", query="SELECT t FROM Tseaifr01 t")
|
||||
public class Tseaifr01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr01PK id;
|
||||
|
||||
@Column(length=20)
|
||||
private String cmprctnt;
|
||||
|
||||
private Integer rsultprcssno;
|
||||
|
||||
@Column(length=50)
|
||||
private String rulefldgroupname;
|
||||
|
||||
@Column(length=50)
|
||||
private String rulefldname;
|
||||
|
||||
public Tseaifr01() {
|
||||
}
|
||||
|
||||
public Tseaifr01PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr01PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCmprctnt() {
|
||||
return this.cmprctnt;
|
||||
}
|
||||
|
||||
public void setCmprctnt(String cmprctnt) {
|
||||
this.cmprctnt = cmprctnt;
|
||||
}
|
||||
|
||||
public Integer getRsultprcssno() {
|
||||
return this.rsultprcssno;
|
||||
}
|
||||
|
||||
public void setRsultprcssno(Integer rsultprcssno) {
|
||||
this.rsultprcssno = rsultprcssno;
|
||||
}
|
||||
|
||||
public String getRulefldgroupname() {
|
||||
return this.rulefldgroupname;
|
||||
}
|
||||
|
||||
public void setRulefldgroupname(String rulefldgroupname) {
|
||||
this.rulefldgroupname = rulefldgroupname;
|
||||
}
|
||||
|
||||
public String getRulefldname() {
|
||||
return this.rulefldname;
|
||||
}
|
||||
|
||||
public void setRulefldname(String rulefldname) {
|
||||
this.rulefldname = rulefldname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr01 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr01PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer svcprcssno;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer ruleserno;
|
||||
|
||||
public Tseaifr01PK() {
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
public Integer getSvcprcssno() {
|
||||
return this.svcprcssno;
|
||||
}
|
||||
public void setSvcprcssno(Integer svcprcssno) {
|
||||
this.svcprcssno = svcprcssno;
|
||||
}
|
||||
public Integer getRuleserno() {
|
||||
return this.ruleserno;
|
||||
}
|
||||
public void setRuleserno(Integer ruleserno) {
|
||||
this.ruleserno = ruleserno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr01PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr01PK castOther = (Tseaifr01PK)other;
|
||||
return
|
||||
this.eaisvcname.equals(castOther.eaisvcname)
|
||||
&& this.svcprcssno.equals(castOther.svcprcssno)
|
||||
&& this.ruleserno.equals(castOther.ruleserno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
hash = hash * prime + this.svcprcssno.hashCode();
|
||||
hash = hash * prime + this.ruleserno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr02")
|
||||
@NamedQuery(name="Tseaifr02.findAll", query="SELECT t FROM Tseaifr02 t")
|
||||
public class Tseaifr02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String routname;
|
||||
|
||||
@Column(length=3)
|
||||
private String adptrcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String layerdstcd;
|
||||
|
||||
@Column(length=200)
|
||||
private String motivrouturiname;
|
||||
|
||||
@Column(length=200)
|
||||
private String nonmotivrouturiname;
|
||||
|
||||
public Tseaifr02() {
|
||||
}
|
||||
|
||||
public String getRoutname() {
|
||||
return this.routname;
|
||||
}
|
||||
|
||||
public void setRoutname(String routname) {
|
||||
this.routname = routname;
|
||||
}
|
||||
|
||||
public String getAdptrcd() {
|
||||
return this.adptrcd;
|
||||
}
|
||||
|
||||
public void setAdptrcd(String adptrcd) {
|
||||
this.adptrcd = adptrcd;
|
||||
}
|
||||
|
||||
public String getLayerdstcd() {
|
||||
return this.layerdstcd;
|
||||
}
|
||||
|
||||
public void setLayerdstcd(String layerdstcd) {
|
||||
this.layerdstcd = layerdstcd;
|
||||
}
|
||||
|
||||
public String getMotivrouturiname() {
|
||||
return this.motivrouturiname;
|
||||
}
|
||||
|
||||
public void setMotivrouturiname(String motivrouturiname) {
|
||||
this.motivrouturiname = motivrouturiname;
|
||||
}
|
||||
|
||||
public String getNonmotivrouturiname() {
|
||||
return this.nonmotivrouturiname;
|
||||
}
|
||||
|
||||
public void setNonmotivrouturiname(String nonmotivrouturiname) {
|
||||
this.nonmotivrouturiname = nonmotivrouturiname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr03")
|
||||
@NamedQuery(name="Tseaifr03.findAll", query="SELECT t FROM Tseaifr03 t")
|
||||
public class Tseaifr03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr03PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String bzwkfldname;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
@Column(length=3)
|
||||
private String msgdstcd;
|
||||
|
||||
public Tseaifr03() {
|
||||
}
|
||||
|
||||
public Tseaifr03PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr03PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBzwkfldname() {
|
||||
return this.bzwkfldname;
|
||||
}
|
||||
|
||||
public void setBzwkfldname(String bzwkfldname) {
|
||||
this.bzwkfldname = bzwkfldname;
|
||||
}
|
||||
|
||||
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 getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public String getMsgdstcd() {
|
||||
return this.msgdstcd;
|
||||
}
|
||||
|
||||
public void setMsgdstcd(String msgdstcd) {
|
||||
this.msgdstcd = msgdstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr03 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr03PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=2)
|
||||
private String etractdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer fldprcssno;
|
||||
|
||||
public Tseaifr03PK() {
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
public String getEtractdstcd() {
|
||||
return this.etractdstcd;
|
||||
}
|
||||
public void setEtractdstcd(String etractdstcd) {
|
||||
this.etractdstcd = etractdstcd;
|
||||
}
|
||||
public Integer getFldprcssno() {
|
||||
return this.fldprcssno;
|
||||
}
|
||||
public void setFldprcssno(Integer fldprcssno) {
|
||||
this.fldprcssno = fldprcssno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr03PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr03PK castOther = (Tseaifr03PK)other;
|
||||
return
|
||||
this.eaisvcname.equals(castOther.eaisvcname)
|
||||
&& this.etractdstcd.equals(castOther.etractdstcd)
|
||||
&& this.fldprcssno.equals(castOther.fldprcssno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
hash = hash * prime + this.etractdstcd.hashCode();
|
||||
hash = hash * prime + this.fldprcssno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr04")
|
||||
@NamedQuery(name="Tseaifr04.findAll", query="SELECT t FROM Tseaifr04 t")
|
||||
public class Tseaifr04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr04PK id;
|
||||
|
||||
@Column(length=400)
|
||||
private String bzwkfldname;
|
||||
|
||||
@Column(length=100)
|
||||
private String clsname;
|
||||
|
||||
private Integer msgfldlen;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal msgfldstartsituval;
|
||||
|
||||
@Column(length=50)
|
||||
private String nomalprcssctnt;
|
||||
|
||||
public Tseaifr04() {
|
||||
}
|
||||
|
||||
public Tseaifr04PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr04PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBzwkfldname() {
|
||||
return this.bzwkfldname;
|
||||
}
|
||||
|
||||
public void setBzwkfldname(String bzwkfldname) {
|
||||
this.bzwkfldname = bzwkfldname;
|
||||
}
|
||||
|
||||
public String getClsname() {
|
||||
return this.clsname;
|
||||
}
|
||||
|
||||
public void setClsname(String clsname) {
|
||||
this.clsname = clsname;
|
||||
}
|
||||
|
||||
public Integer getMsgfldlen() {
|
||||
return this.msgfldlen;
|
||||
}
|
||||
|
||||
public void setMsgfldlen(Integer msgfldlen) {
|
||||
this.msgfldlen = msgfldlen;
|
||||
}
|
||||
|
||||
public BigDecimal getMsgfldstartsituval() {
|
||||
return this.msgfldstartsituval;
|
||||
}
|
||||
|
||||
public void setMsgfldstartsituval(BigDecimal msgfldstartsituval) {
|
||||
this.msgfldstartsituval = msgfldstartsituval;
|
||||
}
|
||||
|
||||
public String getNomalprcssctnt() {
|
||||
return this.nomalprcssctnt;
|
||||
}
|
||||
|
||||
public void setNomalprcssctnt(String nomalprcssctnt) {
|
||||
this.nomalprcssctnt = nomalprcssctnt;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr04 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr04PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String msgdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=1)
|
||||
private String iodstcd;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer groupinorno;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer fldprcssno;
|
||||
|
||||
public Tseaifr04PK() {
|
||||
}
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
public String getMsgdstcd() {
|
||||
return this.msgdstcd;
|
||||
}
|
||||
public void setMsgdstcd(String msgdstcd) {
|
||||
this.msgdstcd = msgdstcd;
|
||||
}
|
||||
public String getIodstcd() {
|
||||
return this.iodstcd;
|
||||
}
|
||||
public void setIodstcd(String iodstcd) {
|
||||
this.iodstcd = iodstcd;
|
||||
}
|
||||
public Integer getGroupinorno() {
|
||||
return this.groupinorno;
|
||||
}
|
||||
public void setGroupinorno(Integer groupinorno) {
|
||||
this.groupinorno = groupinorno;
|
||||
}
|
||||
public Integer getFldprcssno() {
|
||||
return this.fldprcssno;
|
||||
}
|
||||
public void setFldprcssno(Integer fldprcssno) {
|
||||
this.fldprcssno = fldprcssno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr04PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr04PK castOther = (Tseaifr04PK)other;
|
||||
return
|
||||
this.adptrbzwkgroupname.equals(castOther.adptrbzwkgroupname)
|
||||
&& this.msgdstcd.equals(castOther.msgdstcd)
|
||||
&& this.iodstcd.equals(castOther.iodstcd)
|
||||
&& this.groupinorno.equals(castOther.groupinorno)
|
||||
&& this.fldprcssno.equals(castOther.fldprcssno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.adptrbzwkgroupname.hashCode();
|
||||
hash = hash * prime + this.msgdstcd.hashCode();
|
||||
hash = hash * prime + this.iodstcd.hashCode();
|
||||
hash = hash * prime + this.groupinorno.hashCode();
|
||||
hash = hash * prime + this.fldprcssno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr05 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr05")
|
||||
@NamedQuery(name="Tseaifr05.findAll", query="SELECT t FROM Tseaifr05 t")
|
||||
public class Tseaifr05 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=200)
|
||||
private String lifecyclclsname;
|
||||
|
||||
@Column(length=1)
|
||||
private String lifecyclusedstcd;
|
||||
|
||||
private Integer lodinseq;
|
||||
|
||||
public Tseaifr05() {
|
||||
}
|
||||
|
||||
public String getLifecyclclsname() {
|
||||
return this.lifecyclclsname;
|
||||
}
|
||||
|
||||
public void setLifecyclclsname(String lifecyclclsname) {
|
||||
this.lifecyclclsname = lifecyclclsname;
|
||||
}
|
||||
|
||||
public String getLifecyclusedstcd() {
|
||||
return this.lifecyclusedstcd;
|
||||
}
|
||||
|
||||
public void setLifecyclusedstcd(String lifecyclusedstcd) {
|
||||
this.lifecyclusedstcd = lifecyclusedstcd;
|
||||
}
|
||||
|
||||
public Integer getLodinseq() {
|
||||
return this.lodinseq;
|
||||
}
|
||||
|
||||
public void setLodinseq(Integer lodinseq) {
|
||||
this.lodinseq = lodinseq;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr06 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr06")
|
||||
@NamedQuery(name="Tseaifr06.findAll", query="SELECT t FROM Tseaifr06 t")
|
||||
public class Tseaifr06 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr06PK id;
|
||||
|
||||
@Column(length=100)
|
||||
private String adptrroutclsname;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
@Column(length=100)
|
||||
private String svcroutclsname;
|
||||
|
||||
public Tseaifr06() {
|
||||
}
|
||||
|
||||
public Tseaifr06PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr06PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrroutclsname() {
|
||||
return this.adptrroutclsname;
|
||||
}
|
||||
|
||||
public void setAdptrroutclsname(String adptrroutclsname) {
|
||||
this.adptrroutclsname = adptrroutclsname;
|
||||
}
|
||||
|
||||
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 getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public String getSvcroutclsname() {
|
||||
return this.svcroutclsname;
|
||||
}
|
||||
|
||||
public void setSvcroutclsname(String svcroutclsname) {
|
||||
this.svcroutclsname = svcroutclsname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr06 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr06PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer svcprcssno;
|
||||
|
||||
public Tseaifr06PK() {
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
public Integer getSvcprcssno() {
|
||||
return this.svcprcssno;
|
||||
}
|
||||
public void setSvcprcssno(Integer svcprcssno) {
|
||||
this.svcprcssno = svcprcssno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr06PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr06PK castOther = (Tseaifr06PK)other;
|
||||
return
|
||||
this.eaisvcname.equals(castOther.eaisvcname)
|
||||
&& this.svcprcssno.equals(castOther.svcprcssno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
hash = hash * prime + this.svcprcssno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr07 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr07")
|
||||
@NamedQuery(name="Tseaifr07.findAll", query="SELECT t FROM Tseaifr07 t")
|
||||
public class Tseaifr07 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr07PK id;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrbzwkname;
|
||||
|
||||
@Column(length=50)
|
||||
private String psvsysadptrbzwkgroupname;
|
||||
|
||||
public Tseaifr07() {
|
||||
}
|
||||
|
||||
public Tseaifr07PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr07PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkname() {
|
||||
return this.adptrbzwkname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkname(String adptrbzwkname) {
|
||||
this.adptrbzwkname = adptrbzwkname;
|
||||
}
|
||||
|
||||
public String getPsvsysadptrbzwkgroupname() {
|
||||
return this.psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setPsvsysadptrbzwkgroupname(String psvsysadptrbzwkgroupname) {
|
||||
this.psvsysadptrbzwkgroupname = psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr07 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr07PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String eaisevrinstncname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String extnlinstiidnfiname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=30)
|
||||
private String dmnddtalsbzwkdsticname;
|
||||
|
||||
public Tseaifr07PK() {
|
||||
}
|
||||
public String getEaisevrinstncname() {
|
||||
return this.eaisevrinstncname;
|
||||
}
|
||||
public void setEaisevrinstncname(String eaisevrinstncname) {
|
||||
this.eaisevrinstncname = eaisevrinstncname;
|
||||
}
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
public String getExtnlinstiidnfiname() {
|
||||
return this.extnlinstiidnfiname;
|
||||
}
|
||||
public void setExtnlinstiidnfiname(String extnlinstiidnfiname) {
|
||||
this.extnlinstiidnfiname = extnlinstiidnfiname;
|
||||
}
|
||||
public String getDmnddtalsbzwkdsticname() {
|
||||
return this.dmnddtalsbzwkdsticname;
|
||||
}
|
||||
public void setDmnddtalsbzwkdsticname(String dmnddtalsbzwkdsticname) {
|
||||
this.dmnddtalsbzwkdsticname = dmnddtalsbzwkdsticname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr07PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr07PK castOther = (Tseaifr07PK)other;
|
||||
return
|
||||
this.eaisevrinstncname.equals(castOther.eaisevrinstncname)
|
||||
&& this.eaisvcname.equals(castOther.eaisvcname)
|
||||
&& this.extnlinstiidnfiname.equals(castOther.extnlinstiidnfiname)
|
||||
&& this.dmnddtalsbzwkdsticname.equals(castOther.dmnddtalsbzwkdsticname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.eaisevrinstncname.hashCode();
|
||||
hash = hash * prime + this.eaisvcname.hashCode();
|
||||
hash = hash * prime + this.extnlinstiidnfiname.hashCode();
|
||||
hash = hash * prime + this.dmnddtalsbzwkdsticname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr08 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr08")
|
||||
@NamedQuery(name="Tseaifr08.findAll", query="SELECT t FROM Tseaifr08 t")
|
||||
public class Tseaifr08 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=10)
|
||||
private String codename;
|
||||
|
||||
@Column(length=40)
|
||||
private String nodename;
|
||||
|
||||
@Column(length=40)
|
||||
private String queuename;
|
||||
|
||||
public Tseaifr08() {
|
||||
}
|
||||
|
||||
public String getCodename() {
|
||||
return this.codename;
|
||||
}
|
||||
|
||||
public void setCodename(String codename) {
|
||||
this.codename = codename;
|
||||
}
|
||||
|
||||
public String getNodename() {
|
||||
return this.nodename;
|
||||
}
|
||||
|
||||
public void setNodename(String nodename) {
|
||||
this.nodename = nodename;
|
||||
}
|
||||
|
||||
public String getQueuename() {
|
||||
return this.queuename;
|
||||
}
|
||||
|
||||
public void setQueuename(String queuename) {
|
||||
this.queuename = queuename;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr09 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr09")
|
||||
@NamedQuery(name="Tseaifr09.findAll", query="SELECT t FROM Tseaifr09 t")
|
||||
public class Tseaifr09 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr09PK id;
|
||||
|
||||
private Integer threshold;
|
||||
|
||||
private Integer thresholdpersecond;
|
||||
|
||||
@Column(length=12)
|
||||
private String thresholdtimeunit;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
public Tseaifr09() {
|
||||
}
|
||||
|
||||
public Tseaifr09PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr09PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getThreshold() {
|
||||
return this.threshold;
|
||||
}
|
||||
|
||||
public void setThreshold(Integer threshold) {
|
||||
this.threshold = threshold;
|
||||
}
|
||||
|
||||
public Integer getThresholdpersecond() {
|
||||
return this.thresholdpersecond;
|
||||
}
|
||||
|
||||
public void setThresholdpersecond(Integer thresholdpersecond) {
|
||||
this.thresholdpersecond = thresholdpersecond;
|
||||
}
|
||||
|
||||
public String getThresholdtimeunit() {
|
||||
return this.thresholdtimeunit;
|
||||
}
|
||||
|
||||
public void setThresholdtimeunit(String thresholdtimeunit) {
|
||||
this.thresholdtimeunit = thresholdtimeunit;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr09 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr09PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String type;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String name;
|
||||
|
||||
public Tseaifr09PK() {
|
||||
}
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr09PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr09PK castOther = (Tseaifr09PK)other;
|
||||
return
|
||||
this.type.equals(castOther.type)
|
||||
&& this.name.equals(castOther.name);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.type.hashCode();
|
||||
hash = hash * prime + this.name.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr10 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr10")
|
||||
@NamedQuery(name="Tseaifr10.findAll", query="SELECT t FROM Tseaifr10 t")
|
||||
public class Tseaifr10 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr10PK id;
|
||||
|
||||
@Column(length=8)
|
||||
private String enddate;
|
||||
|
||||
@Column(length=8)
|
||||
private String startdate;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
public Tseaifr10() {
|
||||
}
|
||||
|
||||
public Tseaifr10PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr10PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getEnddate() {
|
||||
return this.enddate;
|
||||
}
|
||||
|
||||
public void setEnddate(String enddate) {
|
||||
this.enddate = enddate;
|
||||
}
|
||||
|
||||
public String getStartdate() {
|
||||
return this.startdate;
|
||||
}
|
||||
|
||||
public void setStartdate(String startdate) {
|
||||
this.startdate = startdate;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr10 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr10PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String type;
|
||||
|
||||
@Column(unique=true, nullable=false, length=100)
|
||||
private String name;
|
||||
|
||||
public Tseaifr10PK() {
|
||||
}
|
||||
public String getType() {
|
||||
return this.type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr10PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr10PK castOther = (Tseaifr10PK)other;
|
||||
return
|
||||
this.type.equals(castOther.type)
|
||||
&& this.name.equals(castOther.name);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.type.hashCode();
|
||||
hash = hash * prime + this.name.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaifr11 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaifr11")
|
||||
@NamedQuery(name="Tseaifr11.findAll", query="SELECT t FROM Tseaifr11 t")
|
||||
public class Tseaifr11 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaifr11PK id;
|
||||
|
||||
@Column(length=50)
|
||||
private String adptrbzwkgroupname;
|
||||
|
||||
@Column(length=20)
|
||||
private String eaisevrinstncname;
|
||||
|
||||
@Column(length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
private Integer threshold;
|
||||
|
||||
private Integer thresholdpersecond;
|
||||
|
||||
@Column(length=12)
|
||||
private String thresholdtimeunit;
|
||||
|
||||
public Tseaifr11() {
|
||||
}
|
||||
|
||||
public Tseaifr11PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaifr11PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupname() {
|
||||
return this.adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupname(String adptrbzwkgroupname) {
|
||||
this.adptrbzwkgroupname = adptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getEaisevrinstncname() {
|
||||
return this.eaisevrinstncname;
|
||||
}
|
||||
|
||||
public void setEaisevrinstncname(String eaisevrinstncname) {
|
||||
this.eaisevrinstncname = eaisevrinstncname;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public Integer getThreshold() {
|
||||
return this.threshold;
|
||||
}
|
||||
|
||||
public void setThreshold(Integer threshold) {
|
||||
this.threshold = threshold;
|
||||
}
|
||||
|
||||
public Integer getThresholdpersecond() {
|
||||
return this.thresholdpersecond;
|
||||
}
|
||||
|
||||
public void setThresholdpersecond(Integer thresholdpersecond) {
|
||||
this.thresholdpersecond = thresholdpersecond;
|
||||
}
|
||||
|
||||
public String getThresholdtimeunit() {
|
||||
return this.thresholdtimeunit;
|
||||
}
|
||||
|
||||
public void setThresholdtimeunit(String thresholdtimeunit) {
|
||||
this.thresholdtimeunit = thresholdtimeunit;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaifr11 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaifr11PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=17)
|
||||
private String msgdpstyms;
|
||||
|
||||
@Column(unique=true, nullable=false, length=41)
|
||||
private String eaisvcserno;
|
||||
|
||||
public Tseaifr11PK() {
|
||||
}
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
public String getMsgdpstyms() {
|
||||
return this.msgdpstyms;
|
||||
}
|
||||
public void setMsgdpstyms(String msgdpstyms) {
|
||||
this.msgdpstyms = msgdpstyms;
|
||||
}
|
||||
public String getEaisvcserno() {
|
||||
return this.eaisvcserno;
|
||||
}
|
||||
public void setEaisvcserno(String eaisvcserno) {
|
||||
this.eaisvcserno = eaisvcserno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaifr11PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaifr11PK castOther = (Tseaifr11PK)other;
|
||||
return
|
||||
this.eaibzwkdstcd.equals(castOther.eaibzwkdstcd)
|
||||
&& this.msgdpstyms.equals(castOther.msgdpstyms)
|
||||
&& this.eaisvcserno.equals(castOther.eaisvcserno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.eaibzwkdstcd.hashCode();
|
||||
hash = hash * prime + this.msgdpstyms.hashCode();
|
||||
hash = hash * prime + this.eaisvcserno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,337 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihe01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihe01")
|
||||
@NamedQuery(name="Tseaihe01.findAll", query="SELECT t FROM Tseaihe01 t")
|
||||
public class Tseaihe01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=20)
|
||||
private String author;
|
||||
|
||||
@Column(length=50)
|
||||
private String dmnderrchngidname;
|
||||
|
||||
@Column(length=50)
|
||||
private String dmnderrfldname;
|
||||
|
||||
@Column(length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
@Column(length=3)
|
||||
private String eaigroupcocd;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=400)
|
||||
private String eaisvcdesc;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(length=30)
|
||||
private String erreaisvcname;
|
||||
|
||||
@Column(length=5)
|
||||
private String extbizcd;
|
||||
|
||||
@Column(length=50)
|
||||
private String flowctrlroutname;
|
||||
|
||||
@Column(length=50)
|
||||
private String gstatsysadptrbzwkgroupname;
|
||||
|
||||
@Column(length=1)
|
||||
private String internalexternaldvcd;
|
||||
|
||||
@Column(length=6)
|
||||
private String intgradsticname;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
@Column(length=200)
|
||||
private String refkey;
|
||||
|
||||
@Column(length=50)
|
||||
private String rspnserrchngidname;
|
||||
|
||||
@Column(length=50)
|
||||
private String rspnserrfldname;
|
||||
|
||||
private Integer sevrloglvelno;
|
||||
|
||||
@Column(length=1)
|
||||
private String svcbfclmnlogyn;
|
||||
|
||||
@Column(length=1)
|
||||
private String svchmseonot;
|
||||
|
||||
private Integer svcloglvelno;
|
||||
|
||||
@Column(length=4)
|
||||
private String svcmotivusedstcd;
|
||||
|
||||
@Column(length=10)
|
||||
private String svcprcesdsticname;
|
||||
|
||||
@Column(length=1)
|
||||
private String trantype;
|
||||
|
||||
@Column(length=20)
|
||||
private String txid;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
@Column(length=5)
|
||||
private String verinfo;
|
||||
|
||||
public Tseaihe01() {
|
||||
}
|
||||
|
||||
public String getAuthor() {
|
||||
return this.author;
|
||||
}
|
||||
|
||||
public void setAuthor(String author) {
|
||||
this.author = author;
|
||||
}
|
||||
|
||||
public String getDmnderrchngidname() {
|
||||
return this.dmnderrchngidname;
|
||||
}
|
||||
|
||||
public void setDmnderrchngidname(String dmnderrchngidname) {
|
||||
this.dmnderrchngidname = dmnderrchngidname;
|
||||
}
|
||||
|
||||
public String getDmnderrfldname() {
|
||||
return this.dmnderrfldname;
|
||||
}
|
||||
|
||||
public void setDmnderrfldname(String dmnderrfldname) {
|
||||
this.dmnderrfldname = dmnderrfldname;
|
||||
}
|
||||
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public String getEaigroupcocd() {
|
||||
return this.eaigroupcocd;
|
||||
}
|
||||
|
||||
public void setEaigroupcocd(String eaigroupcocd) {
|
||||
this.eaigroupcocd = eaigroupcocd;
|
||||
}
|
||||
|
||||
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 getEaisvcdesc() {
|
||||
return this.eaisvcdesc;
|
||||
}
|
||||
|
||||
public void setEaisvcdesc(String eaisvcdesc) {
|
||||
this.eaisvcdesc = eaisvcdesc;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getErreaisvcname() {
|
||||
return this.erreaisvcname;
|
||||
}
|
||||
|
||||
public void setErreaisvcname(String erreaisvcname) {
|
||||
this.erreaisvcname = erreaisvcname;
|
||||
}
|
||||
|
||||
public String getExtbizcd() {
|
||||
return this.extbizcd;
|
||||
}
|
||||
|
||||
public void setExtbizcd(String extbizcd) {
|
||||
this.extbizcd = extbizcd;
|
||||
}
|
||||
|
||||
public String getFlowctrlroutname() {
|
||||
return this.flowctrlroutname;
|
||||
}
|
||||
|
||||
public void setFlowctrlroutname(String flowctrlroutname) {
|
||||
this.flowctrlroutname = flowctrlroutname;
|
||||
}
|
||||
|
||||
public String getGstatsysadptrbzwkgroupname() {
|
||||
return this.gstatsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setGstatsysadptrbzwkgroupname(String gstatsysadptrbzwkgroupname) {
|
||||
this.gstatsysadptrbzwkgroupname = gstatsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getInternalexternaldvcd() {
|
||||
return this.internalexternaldvcd;
|
||||
}
|
||||
|
||||
public void setInternalexternaldvcd(String internalexternaldvcd) {
|
||||
this.internalexternaldvcd = internalexternaldvcd;
|
||||
}
|
||||
|
||||
public String getIntgradsticname() {
|
||||
return this.intgradsticname;
|
||||
}
|
||||
|
||||
public void setIntgradsticname(String intgradsticname) {
|
||||
this.intgradsticname = intgradsticname;
|
||||
}
|
||||
|
||||
public String getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public String getRefkey() {
|
||||
return this.refkey;
|
||||
}
|
||||
|
||||
public void setRefkey(String refkey) {
|
||||
this.refkey = refkey;
|
||||
}
|
||||
|
||||
public String getRspnserrchngidname() {
|
||||
return this.rspnserrchngidname;
|
||||
}
|
||||
|
||||
public void setRspnserrchngidname(String rspnserrchngidname) {
|
||||
this.rspnserrchngidname = rspnserrchngidname;
|
||||
}
|
||||
|
||||
public String getRspnserrfldname() {
|
||||
return this.rspnserrfldname;
|
||||
}
|
||||
|
||||
public void setRspnserrfldname(String rspnserrfldname) {
|
||||
this.rspnserrfldname = rspnserrfldname;
|
||||
}
|
||||
|
||||
public Integer getSevrloglvelno() {
|
||||
return this.sevrloglvelno;
|
||||
}
|
||||
|
||||
public void setSevrloglvelno(Integer sevrloglvelno) {
|
||||
this.sevrloglvelno = sevrloglvelno;
|
||||
}
|
||||
|
||||
public String getSvcbfclmnlogyn() {
|
||||
return this.svcbfclmnlogyn;
|
||||
}
|
||||
|
||||
public void setSvcbfclmnlogyn(String svcbfclmnlogyn) {
|
||||
this.svcbfclmnlogyn = svcbfclmnlogyn;
|
||||
}
|
||||
|
||||
public String getSvchmseonot() {
|
||||
return this.svchmseonot;
|
||||
}
|
||||
|
||||
public void setSvchmseonot(String svchmseonot) {
|
||||
this.svchmseonot = svchmseonot;
|
||||
}
|
||||
|
||||
public Integer getSvcloglvelno() {
|
||||
return this.svcloglvelno;
|
||||
}
|
||||
|
||||
public void setSvcloglvelno(Integer svcloglvelno) {
|
||||
this.svcloglvelno = svcloglvelno;
|
||||
}
|
||||
|
||||
public String getSvcmotivusedstcd() {
|
||||
return this.svcmotivusedstcd;
|
||||
}
|
||||
|
||||
public void setSvcmotivusedstcd(String svcmotivusedstcd) {
|
||||
this.svcmotivusedstcd = svcmotivusedstcd;
|
||||
}
|
||||
|
||||
public String getSvcprcesdsticname() {
|
||||
return this.svcprcesdsticname;
|
||||
}
|
||||
|
||||
public void setSvcprcesdsticname(String svcprcesdsticname) {
|
||||
this.svcprcesdsticname = svcprcesdsticname;
|
||||
}
|
||||
|
||||
public String getTrantype() {
|
||||
return this.trantype;
|
||||
}
|
||||
|
||||
public void setTrantype(String trantype) {
|
||||
this.trantype = trantype;
|
||||
}
|
||||
|
||||
public String getTxid() {
|
||||
return this.txid;
|
||||
}
|
||||
|
||||
public void setTxid(String txid) {
|
||||
this.txid = txid;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
public String getVerinfo() {
|
||||
return this.verinfo;
|
||||
}
|
||||
|
||||
public void setVerinfo(String verinfo) {
|
||||
this.verinfo = verinfo;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,295 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihe02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihe02")
|
||||
@NamedQuery(name="Tseaihe02.findAll", query="SELECT t FROM Tseaihe02 t")
|
||||
public class Tseaihe02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(length=1)
|
||||
private String bascrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String bascrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String bascrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String chngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String chngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String cmpensvcprcssdsticname;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(length=1)
|
||||
private String errrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String errrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String errrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String flovryn;
|
||||
|
||||
@Column(length=2)
|
||||
private String hdrctrldstcd;
|
||||
|
||||
@Column(length=100)
|
||||
private String hdrrefclsname;
|
||||
|
||||
private Integer nextsvcprcssno;
|
||||
|
||||
@Column(length=50)
|
||||
private String outbndroutname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvintfacdsticname;
|
||||
|
||||
@Column(length=50)
|
||||
private String psvsysadptrbzwkgroupname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvsysbzwkdstcd;
|
||||
|
||||
@Column(length=12)
|
||||
private String psvsysidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String psvsyssvcdsticname;
|
||||
|
||||
@Column(length=1000)
|
||||
private String restoption;
|
||||
|
||||
@Column(length=1)
|
||||
private String suppldelyn;
|
||||
|
||||
@Column(nullable=false)
|
||||
private Integer svcprcssno;
|
||||
|
||||
@Column(length=2)
|
||||
private String timeoutcode;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal toutval;
|
||||
|
||||
public Tseaihe02() {
|
||||
}
|
||||
|
||||
public String getBascrspnschngeonot() {
|
||||
return this.bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setBascrspnschngeonot(String bascrspnschngeonot) {
|
||||
this.bascrspnschngeonot = bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getBascrspnschngmsgidname() {
|
||||
return this.bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setBascrspnschngmsgidname(String bascrspnschngmsgidname) {
|
||||
this.bascrspnschngmsgidname = bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getBascrspnsmsgcmprctnt() {
|
||||
return this.bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setBascrspnsmsgcmprctnt(String bascrspnsmsgcmprctnt) {
|
||||
this.bascrspnsmsgcmprctnt = bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getChngeonot() {
|
||||
return this.chngeonot;
|
||||
}
|
||||
|
||||
public void setChngeonot(String chngeonot) {
|
||||
this.chngeonot = chngeonot;
|
||||
}
|
||||
|
||||
public String getChngmsgidname() {
|
||||
return this.chngmsgidname;
|
||||
}
|
||||
|
||||
public void setChngmsgidname(String chngmsgidname) {
|
||||
this.chngmsgidname = chngmsgidname;
|
||||
}
|
||||
|
||||
public String getCmpensvcprcssdsticname() {
|
||||
return this.cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
public void setCmpensvcprcssdsticname(String cmpensvcprcssdsticname) {
|
||||
this.cmpensvcprcssdsticname = cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getErrrspnschngeonot() {
|
||||
return this.errrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setErrrspnschngeonot(String errrspnschngeonot) {
|
||||
this.errrspnschngeonot = errrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getErrrspnschngmsgidname() {
|
||||
return this.errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setErrrspnschngmsgidname(String errrspnschngmsgidname) {
|
||||
this.errrspnschngmsgidname = errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getErrrspnsmsgcmprctnt() {
|
||||
return this.errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setErrrspnsmsgcmprctnt(String errrspnsmsgcmprctnt) {
|
||||
this.errrspnsmsgcmprctnt = errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getFlovryn() {
|
||||
return this.flovryn;
|
||||
}
|
||||
|
||||
public void setFlovryn(String flovryn) {
|
||||
this.flovryn = flovryn;
|
||||
}
|
||||
|
||||
public String getHdrctrldstcd() {
|
||||
return this.hdrctrldstcd;
|
||||
}
|
||||
|
||||
public void setHdrctrldstcd(String hdrctrldstcd) {
|
||||
this.hdrctrldstcd = hdrctrldstcd;
|
||||
}
|
||||
|
||||
public String getHdrrefclsname() {
|
||||
return this.hdrrefclsname;
|
||||
}
|
||||
|
||||
public void setHdrrefclsname(String hdrrefclsname) {
|
||||
this.hdrrefclsname = hdrrefclsname;
|
||||
}
|
||||
|
||||
public Integer getNextsvcprcssno() {
|
||||
return this.nextsvcprcssno;
|
||||
}
|
||||
|
||||
public void setNextsvcprcssno(Integer nextsvcprcssno) {
|
||||
this.nextsvcprcssno = nextsvcprcssno;
|
||||
}
|
||||
|
||||
public String getOutbndroutname() {
|
||||
return this.outbndroutname;
|
||||
}
|
||||
|
||||
public void setOutbndroutname(String outbndroutname) {
|
||||
this.outbndroutname = outbndroutname;
|
||||
}
|
||||
|
||||
public String getPsvintfacdsticname() {
|
||||
return this.psvintfacdsticname;
|
||||
}
|
||||
|
||||
public void setPsvintfacdsticname(String psvintfacdsticname) {
|
||||
this.psvintfacdsticname = psvintfacdsticname;
|
||||
}
|
||||
|
||||
public String getPsvsysadptrbzwkgroupname() {
|
||||
return this.psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setPsvsysadptrbzwkgroupname(String psvsysadptrbzwkgroupname) {
|
||||
this.psvsysadptrbzwkgroupname = psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getPsvsysbzwkdstcd() {
|
||||
return this.psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public void setPsvsysbzwkdstcd(String psvsysbzwkdstcd) {
|
||||
this.psvsysbzwkdstcd = psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public String getPsvsysidname() {
|
||||
return this.psvsysidname;
|
||||
}
|
||||
|
||||
public void setPsvsysidname(String psvsysidname) {
|
||||
this.psvsysidname = psvsysidname;
|
||||
}
|
||||
|
||||
public String getPsvsyssvcdsticname() {
|
||||
return this.psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public void setPsvsyssvcdsticname(String psvsyssvcdsticname) {
|
||||
this.psvsyssvcdsticname = psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public String getRestoption() {
|
||||
return this.restoption;
|
||||
}
|
||||
|
||||
public void setRestoption(String restoption) {
|
||||
this.restoption = restoption;
|
||||
}
|
||||
|
||||
public String getSuppldelyn() {
|
||||
return this.suppldelyn;
|
||||
}
|
||||
|
||||
public void setSuppldelyn(String suppldelyn) {
|
||||
this.suppldelyn = suppldelyn;
|
||||
}
|
||||
|
||||
public Integer getSvcprcssno() {
|
||||
return this.svcprcssno;
|
||||
}
|
||||
|
||||
public void setSvcprcssno(Integer svcprcssno) {
|
||||
this.svcprcssno = svcprcssno;
|
||||
}
|
||||
|
||||
public String getTimeoutcode() {
|
||||
return this.timeoutcode;
|
||||
}
|
||||
|
||||
public void setTimeoutcode(String timeoutcode) {
|
||||
this.timeoutcode = timeoutcode;
|
||||
}
|
||||
|
||||
public BigDecimal getToutval() {
|
||||
return this.toutval;
|
||||
}
|
||||
|
||||
public void setToutval(BigDecimal toutval) {
|
||||
this.toutval = toutval;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,315 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihe03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihe03")
|
||||
@NamedQuery(name="Tseaihe03.findAll", query="SELECT t FROM Tseaihe03 t")
|
||||
public class Tseaihe03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaihe03PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String adptrbzwkgroupdesc;
|
||||
|
||||
@Column(length=1)
|
||||
private String bascrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String bascrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String bascrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String chngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String chngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String cmpensvcprcssdsticname;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String errrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String errrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String errrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String flovryn;
|
||||
|
||||
@Column(length=2)
|
||||
private String hdrctrldstcd;
|
||||
|
||||
@Column(length=100)
|
||||
private String hdrrefclsname;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
private Integer nextsvcprcssno;
|
||||
|
||||
@Column(length=50)
|
||||
private String outbndroutname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvintfacdsticname;
|
||||
|
||||
@Column(length=50)
|
||||
private String psvsysadptrbzwkgroupname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvsysbzwkdstcd;
|
||||
|
||||
@Column(length=12)
|
||||
private String psvsysidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String psvsyssvcdsticname;
|
||||
|
||||
@Column(length=1)
|
||||
private String suppldelyn;
|
||||
|
||||
private Integer toutval;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
public Tseaihe03() {
|
||||
}
|
||||
|
||||
public Tseaihe03PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaihe03PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupdesc() {
|
||||
return this.adptrbzwkgroupdesc;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupdesc(String adptrbzwkgroupdesc) {
|
||||
this.adptrbzwkgroupdesc = adptrbzwkgroupdesc;
|
||||
}
|
||||
|
||||
public String getBascrspnschngeonot() {
|
||||
return this.bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setBascrspnschngeonot(String bascrspnschngeonot) {
|
||||
this.bascrspnschngeonot = bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getBascrspnschngmsgidname() {
|
||||
return this.bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setBascrspnschngmsgidname(String bascrspnschngmsgidname) {
|
||||
this.bascrspnschngmsgidname = bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getBascrspnsmsgcmprctnt() {
|
||||
return this.bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setBascrspnsmsgcmprctnt(String bascrspnsmsgcmprctnt) {
|
||||
this.bascrspnsmsgcmprctnt = bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getChngeonot() {
|
||||
return this.chngeonot;
|
||||
}
|
||||
|
||||
public void setChngeonot(String chngeonot) {
|
||||
this.chngeonot = chngeonot;
|
||||
}
|
||||
|
||||
public String getChngmsgidname() {
|
||||
return this.chngmsgidname;
|
||||
}
|
||||
|
||||
public void setChngmsgidname(String chngmsgidname) {
|
||||
this.chngmsgidname = chngmsgidname;
|
||||
}
|
||||
|
||||
public String getCmpensvcprcssdsticname() {
|
||||
return this.cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
public void setCmpensvcprcssdsticname(String cmpensvcprcssdsticname) {
|
||||
this.cmpensvcprcssdsticname = cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
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 getErrrspnschngeonot() {
|
||||
return this.errrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setErrrspnschngeonot(String errrspnschngeonot) {
|
||||
this.errrspnschngeonot = errrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getErrrspnschngmsgidname() {
|
||||
return this.errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setErrrspnschngmsgidname(String errrspnschngmsgidname) {
|
||||
this.errrspnschngmsgidname = errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getErrrspnsmsgcmprctnt() {
|
||||
return this.errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setErrrspnsmsgcmprctnt(String errrspnsmsgcmprctnt) {
|
||||
this.errrspnsmsgcmprctnt = errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getFlovryn() {
|
||||
return this.flovryn;
|
||||
}
|
||||
|
||||
public void setFlovryn(String flovryn) {
|
||||
this.flovryn = flovryn;
|
||||
}
|
||||
|
||||
public String getHdrctrldstcd() {
|
||||
return this.hdrctrldstcd;
|
||||
}
|
||||
|
||||
public void setHdrctrldstcd(String hdrctrldstcd) {
|
||||
this.hdrctrldstcd = hdrctrldstcd;
|
||||
}
|
||||
|
||||
public String getHdrrefclsname() {
|
||||
return this.hdrrefclsname;
|
||||
}
|
||||
|
||||
public void setHdrrefclsname(String hdrrefclsname) {
|
||||
this.hdrrefclsname = hdrrefclsname;
|
||||
}
|
||||
|
||||
public String getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public Integer getNextsvcprcssno() {
|
||||
return this.nextsvcprcssno;
|
||||
}
|
||||
|
||||
public void setNextsvcprcssno(Integer nextsvcprcssno) {
|
||||
this.nextsvcprcssno = nextsvcprcssno;
|
||||
}
|
||||
|
||||
public String getOutbndroutname() {
|
||||
return this.outbndroutname;
|
||||
}
|
||||
|
||||
public void setOutbndroutname(String outbndroutname) {
|
||||
this.outbndroutname = outbndroutname;
|
||||
}
|
||||
|
||||
public String getPsvintfacdsticname() {
|
||||
return this.psvintfacdsticname;
|
||||
}
|
||||
|
||||
public void setPsvintfacdsticname(String psvintfacdsticname) {
|
||||
this.psvintfacdsticname = psvintfacdsticname;
|
||||
}
|
||||
|
||||
public String getPsvsysadptrbzwkgroupname() {
|
||||
return this.psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setPsvsysadptrbzwkgroupname(String psvsysadptrbzwkgroupname) {
|
||||
this.psvsysadptrbzwkgroupname = psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getPsvsysbzwkdstcd() {
|
||||
return this.psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public void setPsvsysbzwkdstcd(String psvsysbzwkdstcd) {
|
||||
this.psvsysbzwkdstcd = psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public String getPsvsysidname() {
|
||||
return this.psvsysidname;
|
||||
}
|
||||
|
||||
public void setPsvsysidname(String psvsysidname) {
|
||||
this.psvsysidname = psvsysidname;
|
||||
}
|
||||
|
||||
public String getPsvsyssvcdsticname() {
|
||||
return this.psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public void setPsvsyssvcdsticname(String psvsyssvcdsticname) {
|
||||
this.psvsyssvcdsticname = psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public String getSuppldelyn() {
|
||||
return this.suppldelyn;
|
||||
}
|
||||
|
||||
public void setSuppldelyn(String suppldelyn) {
|
||||
this.suppldelyn = suppldelyn;
|
||||
}
|
||||
|
||||
public Integer getToutval() {
|
||||
return this.toutval;
|
||||
}
|
||||
|
||||
public void setToutval(Integer toutval) {
|
||||
this.toutval = toutval;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaihe03 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaihe03PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String extnlinstiidnfiname;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer svcprcssno;
|
||||
|
||||
public Tseaihe03PK() {
|
||||
}
|
||||
public String getExtnlinstiidnfiname() {
|
||||
return this.extnlinstiidnfiname;
|
||||
}
|
||||
public void setExtnlinstiidnfiname(String extnlinstiidnfiname) {
|
||||
this.extnlinstiidnfiname = extnlinstiidnfiname;
|
||||
}
|
||||
public Integer getSvcprcssno() {
|
||||
return this.svcprcssno;
|
||||
}
|
||||
public void setSvcprcssno(Integer svcprcssno) {
|
||||
this.svcprcssno = svcprcssno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaihe03PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaihe03PK castOther = (Tseaihe03PK)other;
|
||||
return
|
||||
this.extnlinstiidnfiname.equals(castOther.extnlinstiidnfiname)
|
||||
&& this.svcprcssno.equals(castOther.svcprcssno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.extnlinstiidnfiname.hashCode();
|
||||
hash = hash * prime + this.svcprcssno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,315 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihe04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihe04")
|
||||
@NamedQuery(name="Tseaihe04.findAll", query="SELECT t FROM Tseaihe04 t")
|
||||
public class Tseaihe04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaihe04PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String adptrbzwkgroupdesc;
|
||||
|
||||
@Column(length=1)
|
||||
private String bascrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String bascrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String bascrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String chngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String chngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String cmpensvcprcssdsticname;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=1)
|
||||
private String errrspnschngeonot;
|
||||
|
||||
@Column(length=50)
|
||||
private String errrspnschngmsgidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String errrspnsmsgcmprctnt;
|
||||
|
||||
@Column(length=1)
|
||||
private String flovryn;
|
||||
|
||||
@Column(length=2)
|
||||
private String hdrctrldstcd;
|
||||
|
||||
@Column(length=100)
|
||||
private String hdrrefclsname;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
private Integer nextsvcprcssno;
|
||||
|
||||
@Column(length=50)
|
||||
private String outbndroutname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvintfacdsticname;
|
||||
|
||||
@Column(length=50)
|
||||
private String psvsysadptrbzwkgroupname;
|
||||
|
||||
@Column(length=4)
|
||||
private String psvsysbzwkdstcd;
|
||||
|
||||
@Column(length=12)
|
||||
private String psvsysidname;
|
||||
|
||||
@Column(length=20)
|
||||
private String psvsyssvcdsticname;
|
||||
|
||||
@Column(length=1)
|
||||
private String suppldelyn;
|
||||
|
||||
private Integer toutval;
|
||||
|
||||
@Column(length=1)
|
||||
private String useyn;
|
||||
|
||||
public Tseaihe04() {
|
||||
}
|
||||
|
||||
public Tseaihe04PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaihe04PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAdptrbzwkgroupdesc() {
|
||||
return this.adptrbzwkgroupdesc;
|
||||
}
|
||||
|
||||
public void setAdptrbzwkgroupdesc(String adptrbzwkgroupdesc) {
|
||||
this.adptrbzwkgroupdesc = adptrbzwkgroupdesc;
|
||||
}
|
||||
|
||||
public String getBascrspnschngeonot() {
|
||||
return this.bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setBascrspnschngeonot(String bascrspnschngeonot) {
|
||||
this.bascrspnschngeonot = bascrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getBascrspnschngmsgidname() {
|
||||
return this.bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setBascrspnschngmsgidname(String bascrspnschngmsgidname) {
|
||||
this.bascrspnschngmsgidname = bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getBascrspnsmsgcmprctnt() {
|
||||
return this.bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setBascrspnsmsgcmprctnt(String bascrspnsmsgcmprctnt) {
|
||||
this.bascrspnsmsgcmprctnt = bascrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getChngeonot() {
|
||||
return this.chngeonot;
|
||||
}
|
||||
|
||||
public void setChngeonot(String chngeonot) {
|
||||
this.chngeonot = chngeonot;
|
||||
}
|
||||
|
||||
public String getChngmsgidname() {
|
||||
return this.chngmsgidname;
|
||||
}
|
||||
|
||||
public void setChngmsgidname(String chngmsgidname) {
|
||||
this.chngmsgidname = chngmsgidname;
|
||||
}
|
||||
|
||||
public String getCmpensvcprcssdsticname() {
|
||||
return this.cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
public void setCmpensvcprcssdsticname(String cmpensvcprcssdsticname) {
|
||||
this.cmpensvcprcssdsticname = cmpensvcprcssdsticname;
|
||||
}
|
||||
|
||||
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 getErrrspnschngeonot() {
|
||||
return this.errrspnschngeonot;
|
||||
}
|
||||
|
||||
public void setErrrspnschngeonot(String errrspnschngeonot) {
|
||||
this.errrspnschngeonot = errrspnschngeonot;
|
||||
}
|
||||
|
||||
public String getErrrspnschngmsgidname() {
|
||||
return this.errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setErrrspnschngmsgidname(String errrspnschngmsgidname) {
|
||||
this.errrspnschngmsgidname = errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getErrrspnsmsgcmprctnt() {
|
||||
return this.errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public void setErrrspnsmsgcmprctnt(String errrspnsmsgcmprctnt) {
|
||||
this.errrspnsmsgcmprctnt = errrspnsmsgcmprctnt;
|
||||
}
|
||||
|
||||
public String getFlovryn() {
|
||||
return this.flovryn;
|
||||
}
|
||||
|
||||
public void setFlovryn(String flovryn) {
|
||||
this.flovryn = flovryn;
|
||||
}
|
||||
|
||||
public String getHdrctrldstcd() {
|
||||
return this.hdrctrldstcd;
|
||||
}
|
||||
|
||||
public void setHdrctrldstcd(String hdrctrldstcd) {
|
||||
this.hdrctrldstcd = hdrctrldstcd;
|
||||
}
|
||||
|
||||
public String getHdrrefclsname() {
|
||||
return this.hdrrefclsname;
|
||||
}
|
||||
|
||||
public void setHdrrefclsname(String hdrrefclsname) {
|
||||
this.hdrrefclsname = hdrrefclsname;
|
||||
}
|
||||
|
||||
public String getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public Integer getNextsvcprcssno() {
|
||||
return this.nextsvcprcssno;
|
||||
}
|
||||
|
||||
public void setNextsvcprcssno(Integer nextsvcprcssno) {
|
||||
this.nextsvcprcssno = nextsvcprcssno;
|
||||
}
|
||||
|
||||
public String getOutbndroutname() {
|
||||
return this.outbndroutname;
|
||||
}
|
||||
|
||||
public void setOutbndroutname(String outbndroutname) {
|
||||
this.outbndroutname = outbndroutname;
|
||||
}
|
||||
|
||||
public String getPsvintfacdsticname() {
|
||||
return this.psvintfacdsticname;
|
||||
}
|
||||
|
||||
public void setPsvintfacdsticname(String psvintfacdsticname) {
|
||||
this.psvintfacdsticname = psvintfacdsticname;
|
||||
}
|
||||
|
||||
public String getPsvsysadptrbzwkgroupname() {
|
||||
return this.psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public void setPsvsysadptrbzwkgroupname(String psvsysadptrbzwkgroupname) {
|
||||
this.psvsysadptrbzwkgroupname = psvsysadptrbzwkgroupname;
|
||||
}
|
||||
|
||||
public String getPsvsysbzwkdstcd() {
|
||||
return this.psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public void setPsvsysbzwkdstcd(String psvsysbzwkdstcd) {
|
||||
this.psvsysbzwkdstcd = psvsysbzwkdstcd;
|
||||
}
|
||||
|
||||
public String getPsvsysidname() {
|
||||
return this.psvsysidname;
|
||||
}
|
||||
|
||||
public void setPsvsysidname(String psvsysidname) {
|
||||
this.psvsysidname = psvsysidname;
|
||||
}
|
||||
|
||||
public String getPsvsyssvcdsticname() {
|
||||
return this.psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public void setPsvsyssvcdsticname(String psvsyssvcdsticname) {
|
||||
this.psvsyssvcdsticname = psvsyssvcdsticname;
|
||||
}
|
||||
|
||||
public String getSuppldelyn() {
|
||||
return this.suppldelyn;
|
||||
}
|
||||
|
||||
public void setSuppldelyn(String suppldelyn) {
|
||||
this.suppldelyn = suppldelyn;
|
||||
}
|
||||
|
||||
public Integer getToutval() {
|
||||
return this.toutval;
|
||||
}
|
||||
|
||||
public void setToutval(Integer toutval) {
|
||||
this.toutval = toutval;
|
||||
}
|
||||
|
||||
public String getUseyn() {
|
||||
return this.useyn;
|
||||
}
|
||||
|
||||
public void setUseyn(String useyn) {
|
||||
this.useyn = useyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaihe04 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaihe04PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=8)
|
||||
private String extnlinstiidnfiname;
|
||||
|
||||
@Column(unique=true, nullable=false)
|
||||
private Integer svcprcssno;
|
||||
|
||||
public Tseaihe04PK() {
|
||||
}
|
||||
public String getExtnlinstiidnfiname() {
|
||||
return this.extnlinstiidnfiname;
|
||||
}
|
||||
public void setExtnlinstiidnfiname(String extnlinstiidnfiname) {
|
||||
this.extnlinstiidnfiname = extnlinstiidnfiname;
|
||||
}
|
||||
public Integer getSvcprcssno() {
|
||||
return this.svcprcssno;
|
||||
}
|
||||
public void setSvcprcssno(Integer svcprcssno) {
|
||||
this.svcprcssno = svcprcssno;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaihe04PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaihe04PK castOther = (Tseaihe04PK)other;
|
||||
return
|
||||
this.extnlinstiidnfiname.equals(castOther.extnlinstiidnfiname)
|
||||
&& this.svcprcssno.equals(castOther.svcprcssno);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.extnlinstiidnfiname.hashCode();
|
||||
hash = hash * prime + this.svcprcssno.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihs02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihs02")
|
||||
@NamedQuery(name="Tseaihs02.findAll", query="SELECT t FROM Tseaihs02 t")
|
||||
public class Tseaihs02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaihs02PK id;
|
||||
|
||||
@Column(length=8)
|
||||
private String eaimsgstorgymd;
|
||||
|
||||
@Column(length=4000)
|
||||
private String msghdrctnt;
|
||||
|
||||
public Tseaihs02() {
|
||||
}
|
||||
|
||||
public Tseaihs02PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaihs02PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getEaimsgstorgymd() {
|
||||
return this.eaimsgstorgymd;
|
||||
}
|
||||
|
||||
public void setEaimsgstorgymd(String eaimsgstorgymd) {
|
||||
this.eaimsgstorgymd = eaimsgstorgymd;
|
||||
}
|
||||
|
||||
public String getMsghdrctnt() {
|
||||
return this.msghdrctnt;
|
||||
}
|
||||
|
||||
public void setMsghdrctnt(String msghdrctnt) {
|
||||
this.msghdrctnt = msghdrctnt;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaihs02 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaihs02PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String nwuapplcd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String keymgtmsgctnt;
|
||||
|
||||
public Tseaihs02PK() {
|
||||
}
|
||||
public String getNwuapplcd() {
|
||||
return this.nwuapplcd;
|
||||
}
|
||||
public void setNwuapplcd(String nwuapplcd) {
|
||||
this.nwuapplcd = nwuapplcd;
|
||||
}
|
||||
public String getKeymgtmsgctnt() {
|
||||
return this.keymgtmsgctnt;
|
||||
}
|
||||
public void setKeymgtmsgctnt(String keymgtmsgctnt) {
|
||||
this.keymgtmsgctnt = keymgtmsgctnt;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaihs02PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaihs02PK castOther = (Tseaihs02PK)other;
|
||||
return
|
||||
this.nwuapplcd.equals(castOther.nwuapplcd)
|
||||
&& this.keymgtmsgctnt.equals(castOther.keymgtmsgctnt);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.nwuapplcd.hashCode();
|
||||
hash = hash * prime + this.keymgtmsgctnt.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihs03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihs03")
|
||||
@NamedQuery(name="Tseaihs03.findAll", query="SELECT t FROM Tseaihs03 t")
|
||||
public class Tseaihs03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String columnname;
|
||||
|
||||
@Column(length=200)
|
||||
private String columndefault;
|
||||
|
||||
@Column(length=400)
|
||||
private String columndesc;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal columnlength;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal combodepth;
|
||||
|
||||
@Column(length=40)
|
||||
private String comboname;
|
||||
|
||||
@Column(length=1)
|
||||
private String isinterface;
|
||||
|
||||
@Column(length=1)
|
||||
private String iskey;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal keyseq;
|
||||
|
||||
@Column(precision=10)
|
||||
private BigDecimal orderseq;
|
||||
|
||||
public Tseaihs03() {
|
||||
}
|
||||
|
||||
public String getColumnname() {
|
||||
return this.columnname;
|
||||
}
|
||||
|
||||
public void setColumnname(String columnname) {
|
||||
this.columnname = columnname;
|
||||
}
|
||||
|
||||
public String getColumndefault() {
|
||||
return this.columndefault;
|
||||
}
|
||||
|
||||
public void setColumndefault(String columndefault) {
|
||||
this.columndefault = columndefault;
|
||||
}
|
||||
|
||||
public String getColumndesc() {
|
||||
return this.columndesc;
|
||||
}
|
||||
|
||||
public void setColumndesc(String columndesc) {
|
||||
this.columndesc = columndesc;
|
||||
}
|
||||
|
||||
public BigDecimal getColumnlength() {
|
||||
return this.columnlength;
|
||||
}
|
||||
|
||||
public void setColumnlength(BigDecimal columnlength) {
|
||||
this.columnlength = columnlength;
|
||||
}
|
||||
|
||||
public BigDecimal getCombodepth() {
|
||||
return this.combodepth;
|
||||
}
|
||||
|
||||
public void setCombodepth(BigDecimal combodepth) {
|
||||
this.combodepth = combodepth;
|
||||
}
|
||||
|
||||
public String getComboname() {
|
||||
return this.comboname;
|
||||
}
|
||||
|
||||
public void setComboname(String comboname) {
|
||||
this.comboname = comboname;
|
||||
}
|
||||
|
||||
public String getIsinterface() {
|
||||
return this.isinterface;
|
||||
}
|
||||
|
||||
public void setIsinterface(String isinterface) {
|
||||
this.isinterface = isinterface;
|
||||
}
|
||||
|
||||
public String getIskey() {
|
||||
return this.iskey;
|
||||
}
|
||||
|
||||
public void setIskey(String iskey) {
|
||||
this.iskey = iskey;
|
||||
}
|
||||
|
||||
public BigDecimal getKeyseq() {
|
||||
return this.keyseq;
|
||||
}
|
||||
|
||||
public void setKeyseq(BigDecimal keyseq) {
|
||||
this.keyseq = keyseq;
|
||||
}
|
||||
|
||||
public BigDecimal getOrderseq() {
|
||||
return this.orderseq;
|
||||
}
|
||||
|
||||
public void setOrderseq(BigDecimal orderseq) {
|
||||
this.orderseq = orderseq;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihs04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihs04")
|
||||
@NamedQuery(name="Tseaihs04.findAll", query="SELECT t FROM Tseaihs04 t")
|
||||
public class Tseaihs04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=200)
|
||||
private String bzwksvckeyname;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaidirection;
|
||||
|
||||
@Column(length=17)
|
||||
private String eailastamndyms;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisendrecv;
|
||||
|
||||
@Column(length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
@Column(length=40)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(length=24)
|
||||
private String eaitranname;
|
||||
|
||||
@Column(length=1)
|
||||
private String modfimgtstusdstcd;
|
||||
|
||||
public Tseaihs04() {
|
||||
}
|
||||
|
||||
public String getBzwksvckeyname() {
|
||||
return this.bzwksvckeyname;
|
||||
}
|
||||
|
||||
public void setBzwksvckeyname(String bzwksvckeyname) {
|
||||
this.bzwksvckeyname = bzwksvckeyname;
|
||||
}
|
||||
|
||||
public String getEaidirection() {
|
||||
return this.eaidirection;
|
||||
}
|
||||
|
||||
public void setEaidirection(String eaidirection) {
|
||||
this.eaidirection = eaidirection;
|
||||
}
|
||||
|
||||
public String getEailastamndyms() {
|
||||
return this.eailastamndyms;
|
||||
}
|
||||
|
||||
public void setEailastamndyms(String eailastamndyms) {
|
||||
this.eailastamndyms = eailastamndyms;
|
||||
}
|
||||
|
||||
public String getEaisendrecv() {
|
||||
return this.eaisendrecv;
|
||||
}
|
||||
|
||||
public void setEaisendrecv(String eaisendrecv) {
|
||||
this.eaisendrecv = eaisendrecv;
|
||||
}
|
||||
|
||||
public String getEaisevrdstcd() {
|
||||
return this.eaisevrdstcd;
|
||||
}
|
||||
|
||||
public void setEaisevrdstcd(String eaisevrdstcd) {
|
||||
this.eaisevrdstcd = eaisevrdstcd;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getEaitranname() {
|
||||
return this.eaitranname;
|
||||
}
|
||||
|
||||
public void setEaitranname(String eaitranname) {
|
||||
this.eaitranname = eaitranname;
|
||||
}
|
||||
|
||||
public String getModfimgtstusdstcd() {
|
||||
return this.modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
public void setModfimgtstusdstcd(String modfimgtstusdstcd) {
|
||||
this.modfimgtstusdstcd = modfimgtstusdstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaihs05 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaihs05")
|
||||
@NamedQuery(name="Tseaihs05.findAll", query="SELECT t FROM Tseaihs05 t")
|
||||
public class Tseaihs05 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaihs05PK id;
|
||||
|
||||
@Column(length=200)
|
||||
private String columnvalue;
|
||||
|
||||
public Tseaihs05() {
|
||||
}
|
||||
|
||||
public Tseaihs05PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaihs05PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getColumnvalue() {
|
||||
return this.columnvalue;
|
||||
}
|
||||
|
||||
public void setColumnvalue(String columnvalue) {
|
||||
this.columnvalue = columnvalue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaihs05 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaihs05PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=200)
|
||||
private String bzwksvckeyname;
|
||||
|
||||
@Column(unique=true, nullable=false, length=50)
|
||||
private String columnname;
|
||||
|
||||
public Tseaihs05PK() {
|
||||
}
|
||||
public String getBzwksvckeyname() {
|
||||
return this.bzwksvckeyname;
|
||||
}
|
||||
public void setBzwksvckeyname(String bzwksvckeyname) {
|
||||
this.bzwksvckeyname = bzwksvckeyname;
|
||||
}
|
||||
public String getColumnname() {
|
||||
return this.columnname;
|
||||
}
|
||||
public void setColumnname(String columnname) {
|
||||
this.columnname = columnname;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaihs05PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaihs05PK castOther = (Tseaihs05PK)other;
|
||||
return
|
||||
this.bzwksvckeyname.equals(castOther.bzwksvckeyname)
|
||||
&& this.columnname.equals(castOther.columnname);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.bzwksvckeyname.hashCode();
|
||||
hash = hash * prime + this.columnname.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,163 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiif03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiif03")
|
||||
@NamedQuery(name="Tseaiif03.findAll", query="SELECT t FROM Tseaiif03 t")
|
||||
public class Tseaiif03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaiif03PK id;
|
||||
|
||||
@Column(length=42)
|
||||
private String bzwkcontactname;
|
||||
|
||||
@Column(length=52)
|
||||
private String bzwkcontactperson;
|
||||
|
||||
@Column(length=42)
|
||||
private String bzwkname;
|
||||
|
||||
@Column(length=52)
|
||||
private String companyitcontactname;
|
||||
|
||||
@Column(length=16)
|
||||
private String companyitcontacttelno;
|
||||
|
||||
@Column(length=42)
|
||||
private String companyname;
|
||||
|
||||
@Column(length=20)
|
||||
private String connetinsticode;
|
||||
|
||||
@Column(length=42)
|
||||
private String connetinsticodename;
|
||||
|
||||
@Column(length=42)
|
||||
private String itcontactpointname;
|
||||
|
||||
@Column(length=52)
|
||||
private String itcontactpointperson1;
|
||||
|
||||
@Column(length=52)
|
||||
private String itcontactpointperson2;
|
||||
|
||||
@Column(length=1)
|
||||
private String onlineyn;
|
||||
|
||||
public Tseaiif03() {
|
||||
}
|
||||
|
||||
public Tseaiif03PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaiif03PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBzwkcontactname() {
|
||||
return this.bzwkcontactname;
|
||||
}
|
||||
|
||||
public void setBzwkcontactname(String bzwkcontactname) {
|
||||
this.bzwkcontactname = bzwkcontactname;
|
||||
}
|
||||
|
||||
public String getBzwkcontactperson() {
|
||||
return this.bzwkcontactperson;
|
||||
}
|
||||
|
||||
public void setBzwkcontactperson(String bzwkcontactperson) {
|
||||
this.bzwkcontactperson = bzwkcontactperson;
|
||||
}
|
||||
|
||||
public String getBzwkname() {
|
||||
return this.bzwkname;
|
||||
}
|
||||
|
||||
public void setBzwkname(String bzwkname) {
|
||||
this.bzwkname = bzwkname;
|
||||
}
|
||||
|
||||
public String getCompanyitcontactname() {
|
||||
return this.companyitcontactname;
|
||||
}
|
||||
|
||||
public void setCompanyitcontactname(String companyitcontactname) {
|
||||
this.companyitcontactname = companyitcontactname;
|
||||
}
|
||||
|
||||
public String getCompanyitcontacttelno() {
|
||||
return this.companyitcontacttelno;
|
||||
}
|
||||
|
||||
public void setCompanyitcontacttelno(String companyitcontacttelno) {
|
||||
this.companyitcontacttelno = companyitcontacttelno;
|
||||
}
|
||||
|
||||
public String getCompanyname() {
|
||||
return this.companyname;
|
||||
}
|
||||
|
||||
public void setCompanyname(String companyname) {
|
||||
this.companyname = companyname;
|
||||
}
|
||||
|
||||
public String getConnetinsticode() {
|
||||
return this.connetinsticode;
|
||||
}
|
||||
|
||||
public void setConnetinsticode(String connetinsticode) {
|
||||
this.connetinsticode = connetinsticode;
|
||||
}
|
||||
|
||||
public String getConnetinsticodename() {
|
||||
return this.connetinsticodename;
|
||||
}
|
||||
|
||||
public void setConnetinsticodename(String connetinsticodename) {
|
||||
this.connetinsticodename = connetinsticodename;
|
||||
}
|
||||
|
||||
public String getItcontactpointname() {
|
||||
return this.itcontactpointname;
|
||||
}
|
||||
|
||||
public void setItcontactpointname(String itcontactpointname) {
|
||||
this.itcontactpointname = itcontactpointname;
|
||||
}
|
||||
|
||||
public String getItcontactpointperson1() {
|
||||
return this.itcontactpointperson1;
|
||||
}
|
||||
|
||||
public void setItcontactpointperson1(String itcontactpointperson1) {
|
||||
this.itcontactpointperson1 = itcontactpointperson1;
|
||||
}
|
||||
|
||||
public String getItcontactpointperson2() {
|
||||
return this.itcontactpointperson2;
|
||||
}
|
||||
|
||||
public void setItcontactpointperson2(String itcontactpointperson2) {
|
||||
this.itcontactpointperson2 = itcontactpointperson2;
|
||||
}
|
||||
|
||||
public String getOnlineyn() {
|
||||
return this.onlineyn;
|
||||
}
|
||||
|
||||
public void setOnlineyn(String onlineyn) {
|
||||
this.onlineyn = onlineyn;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
/**
|
||||
* The primary key class for the tseaiif03 database table.
|
||||
*
|
||||
*/
|
||||
@Embeddable
|
||||
public class Tseaiif03PK implements Serializable {
|
||||
//default serial version id, required for serializable classes.
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String groupcocd;
|
||||
|
||||
@Column(unique=true, nullable=false, length=20)
|
||||
private String companycode;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String appcode;
|
||||
|
||||
@Column(unique=true, nullable=false, length=3)
|
||||
private String bzwkdstcode;
|
||||
|
||||
public Tseaiif03PK() {
|
||||
}
|
||||
public String getGroupcocd() {
|
||||
return this.groupcocd;
|
||||
}
|
||||
public void setGroupcocd(String groupcocd) {
|
||||
this.groupcocd = groupcocd;
|
||||
}
|
||||
public String getCompanycode() {
|
||||
return this.companycode;
|
||||
}
|
||||
public void setCompanycode(String companycode) {
|
||||
this.companycode = companycode;
|
||||
}
|
||||
public String getAppcode() {
|
||||
return this.appcode;
|
||||
}
|
||||
public void setAppcode(String appcode) {
|
||||
this.appcode = appcode;
|
||||
}
|
||||
public String getBzwkdstcode() {
|
||||
return this.bzwkdstcode;
|
||||
}
|
||||
public void setBzwkdstcode(String bzwkdstcode) {
|
||||
this.bzwkdstcode = bzwkdstcode;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof Tseaiif03PK)) {
|
||||
return false;
|
||||
}
|
||||
Tseaiif03PK castOther = (Tseaiif03PK)other;
|
||||
return
|
||||
this.groupcocd.equals(castOther.groupcocd)
|
||||
&& this.companycode.equals(castOther.companycode)
|
||||
&& this.appcode.equals(castOther.appcode)
|
||||
&& this.bzwkdstcode.equals(castOther.bzwkdstcode);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int hash = 17;
|
||||
hash = hash * prime + this.groupcocd.hashCode();
|
||||
hash = hash * prime + this.companycode.hashCode();
|
||||
hash = hash * prime + this.appcode.hashCode();
|
||||
hash = hash * prime + this.bzwkdstcode.hashCode();
|
||||
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiil01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiil01")
|
||||
@NamedQuery(name="Tseaiil01.findAll", query="SELECT t FROM Tseaiil01 t")
|
||||
public class Tseaiil01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String chmnerrcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String chmnknddstcd;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String dtecnvsnyn;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String eaiaplyyn;
|
||||
|
||||
@Column(nullable=false, length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String hostname;
|
||||
|
||||
@Column(nullable=false, length=14)
|
||||
private String modfimgtmodfiyms;
|
||||
|
||||
@Column(nullable=false, length=20)
|
||||
private String modfimgtpckagno;
|
||||
|
||||
public Tseaiil01() {
|
||||
}
|
||||
|
||||
public String getChmnerrcd() {
|
||||
return this.chmnerrcd;
|
||||
}
|
||||
|
||||
public void setChmnerrcd(String chmnerrcd) {
|
||||
this.chmnerrcd = chmnerrcd;
|
||||
}
|
||||
|
||||
public String getChmnknddstcd() {
|
||||
return this.chmnknddstcd;
|
||||
}
|
||||
|
||||
public void setChmnknddstcd(String chmnknddstcd) {
|
||||
this.chmnknddstcd = chmnknddstcd;
|
||||
}
|
||||
|
||||
public String getDtecnvsnyn() {
|
||||
return this.dtecnvsnyn;
|
||||
}
|
||||
|
||||
public void setDtecnvsnyn(String dtecnvsnyn) {
|
||||
this.dtecnvsnyn = dtecnvsnyn;
|
||||
}
|
||||
|
||||
public String getEaiaplyyn() {
|
||||
return this.eaiaplyyn;
|
||||
}
|
||||
|
||||
public void setEaiaplyyn(String eaiaplyyn) {
|
||||
this.eaiaplyyn = eaiaplyyn;
|
||||
}
|
||||
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public String getHostname() {
|
||||
return this.hostname;
|
||||
}
|
||||
|
||||
public void setHostname(String hostname) {
|
||||
this.hostname = hostname;
|
||||
}
|
||||
|
||||
public String getModfimgtmodfiyms() {
|
||||
return this.modfimgtmodfiyms;
|
||||
}
|
||||
|
||||
public void setModfimgtmodfiyms(String modfimgtmodfiyms) {
|
||||
this.modfimgtmodfiyms = modfimgtmodfiyms;
|
||||
}
|
||||
|
||||
public String getModfimgtpckagno() {
|
||||
return this.modfimgtpckagno;
|
||||
}
|
||||
|
||||
public void setModfimgtpckagno(String modfimgtpckagno) {
|
||||
this.modfimgtpckagno = modfimgtpckagno;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiil02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiil02")
|
||||
@NamedQuery(name="Tseaiil02.findAll", query="SELECT t FROM Tseaiil02 t")
|
||||
public class Tseaiil02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String aplychngmsgfldname;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String bascrspnschngmsgidname;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String chngmsgidname;
|
||||
|
||||
@Column(nullable=false, length=30)
|
||||
private String eaisvcname;
|
||||
|
||||
@Column(nullable=false, length=50)
|
||||
private String errrspnschngmsgidname;
|
||||
|
||||
@Column(nullable=false, length=10)
|
||||
private String psvintfacdsticname;
|
||||
|
||||
public Tseaiil02() {
|
||||
}
|
||||
|
||||
public String getAplychngmsgfldname() {
|
||||
return this.aplychngmsgfldname;
|
||||
}
|
||||
|
||||
public void setAplychngmsgfldname(String aplychngmsgfldname) {
|
||||
this.aplychngmsgfldname = aplychngmsgfldname;
|
||||
}
|
||||
|
||||
public String getBascrspnschngmsgidname() {
|
||||
return this.bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setBascrspnschngmsgidname(String bascrspnschngmsgidname) {
|
||||
this.bascrspnschngmsgidname = bascrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getChngmsgidname() {
|
||||
return this.chngmsgidname;
|
||||
}
|
||||
|
||||
public void setChngmsgidname(String chngmsgidname) {
|
||||
this.chngmsgidname = chngmsgidname;
|
||||
}
|
||||
|
||||
public String getEaisvcname() {
|
||||
return this.eaisvcname;
|
||||
}
|
||||
|
||||
public void setEaisvcname(String eaisvcname) {
|
||||
this.eaisvcname = eaisvcname;
|
||||
}
|
||||
|
||||
public String getErrrspnschngmsgidname() {
|
||||
return this.errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public void setErrrspnschngmsgidname(String errrspnschngmsgidname) {
|
||||
this.errrspnschngmsgidname = errrspnschngmsgidname;
|
||||
}
|
||||
|
||||
public String getPsvintfacdsticname() {
|
||||
return this.psvintfacdsticname;
|
||||
}
|
||||
|
||||
public void setPsvintfacdsticname(String psvintfacdsticname) {
|
||||
this.psvintfacdsticname = psvintfacdsticname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiil03 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiil03")
|
||||
@NamedQuery(name="Tseaiil03.findAll", query="SELECT t FROM Tseaiil03 t")
|
||||
public class Tseaiil03 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=3)
|
||||
private String chmnerrcd;
|
||||
|
||||
@Column(nullable=false, length=100)
|
||||
private String chmnerrcdhanglname;
|
||||
|
||||
public Tseaiil03() {
|
||||
}
|
||||
|
||||
public String getChmnerrcd() {
|
||||
return this.chmnerrcd;
|
||||
}
|
||||
|
||||
public void setChmnerrcd(String chmnerrcd) {
|
||||
this.chmnerrcd = chmnerrcd;
|
||||
}
|
||||
|
||||
public String getChmnerrcdhanglname() {
|
||||
return this.chmnerrcdhanglname;
|
||||
}
|
||||
|
||||
public void setChmnerrcdhanglname(String chmnerrcdhanglname) {
|
||||
this.chmnerrcdhanglname = chmnerrcdhanglname;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaiil04 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaiil04")
|
||||
@NamedQuery(name="Tseaiil04.findAll", query="SELECT t FROM Tseaiil04 t")
|
||||
public class Tseaiil04 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(unique=true, nullable=false, length=4)
|
||||
private String eaicardbzwkdstcd;
|
||||
|
||||
@Column(length=4)
|
||||
private String eaibzwkdstcd;
|
||||
|
||||
public Tseaiil04() {
|
||||
}
|
||||
|
||||
public String getEaicardbzwkdstcd() {
|
||||
return this.eaicardbzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaicardbzwkdstcd(String eaicardbzwkdstcd) {
|
||||
this.eaicardbzwkdstcd = eaicardbzwkdstcd;
|
||||
}
|
||||
|
||||
public String getEaibzwkdstcd() {
|
||||
return this.eaibzwkdstcd;
|
||||
}
|
||||
|
||||
public void setEaibzwkdstcd(String eaibzwkdstcd) {
|
||||
this.eaibzwkdstcd = eaibzwkdstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaimo01 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaimo01")
|
||||
@NamedQuery(name="Tseaimo01.findAll", query="SELECT t FROM Tseaimo01 t")
|
||||
public class Tseaimo01 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(nullable=false, length=8)
|
||||
private String baseymd;
|
||||
|
||||
@Column(nullable=false, length=200)
|
||||
private String eaiosidinstiname;
|
||||
|
||||
@Column(nullable=false, length=1)
|
||||
private String eaisevrdstcd;
|
||||
|
||||
public Tseaimo01() {
|
||||
}
|
||||
|
||||
public String getBaseymd() {
|
||||
return this.baseymd;
|
||||
}
|
||||
|
||||
public void setBaseymd(String baseymd) {
|
||||
this.baseymd = baseymd;
|
||||
}
|
||||
|
||||
public String getEaiosidinstiname() {
|
||||
return this.eaiosidinstiname;
|
||||
}
|
||||
|
||||
public void setEaiosidinstiname(String eaiosidinstiname) {
|
||||
this.eaiosidinstiname = eaiosidinstiname;
|
||||
}
|
||||
|
||||
public String getEaisevrdstcd() {
|
||||
return this.eaisevrdstcd;
|
||||
}
|
||||
|
||||
public void setEaisevrdstcd(String eaisevrdstcd) {
|
||||
this.eaisevrdstcd = eaisevrdstcd;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tseaimo02 database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="tseaimo02")
|
||||
@NamedQuery(name="Tseaimo02.findAll", query="SELECT t FROM Tseaimo02 t")
|
||||
public class Tseaimo02 implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@EmbeddedId
|
||||
private Tseaimo02PK id;
|
||||
|
||||
@Column(length=8)
|
||||
private String baseymd;
|
||||
|
||||
public Tseaimo02() {
|
||||
}
|
||||
|
||||
public Tseaimo02PK getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Tseaimo02PK id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBaseymd() {
|
||||
return this.baseymd;
|
||||
}
|
||||
|
||||
public void setBaseymd(String baseymd) {
|
||||
this.baseymd = baseymd;
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user