86 lines
1.6 KiB
Java
86 lines
1.6 KiB
Java
package model;
|
|
|
|
import java.io.Serializable;
|
|
import javax.persistence.*;
|
|
|
|
|
|
/**
|
|
* The persistent class for the tseaitl01 database table.
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name="tseaitl01")
|
|
@NamedQuery(name="Tseaitl01.findAll", query="SELECT t FROM Tseaitl01 t")
|
|
public class Tseaitl01 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@EmbeddedId
|
|
private Tseaitl01PK id;
|
|
|
|
@Column(length=8)
|
|
private String ctrlprcssname;
|
|
|
|
@Column(length=17)
|
|
private String ctrlrevocyms;
|
|
|
|
@Column(length=100)
|
|
private String eaictrldsticctnt;
|
|
|
|
@Column(length=1)
|
|
private String eaictrlnamedstcd;
|
|
|
|
@Column(length=8)
|
|
private String revocprcssname;
|
|
|
|
public Tseaitl01() {
|
|
}
|
|
|
|
public Tseaitl01PK getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(Tseaitl01PK id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getCtrlprcssname() {
|
|
return this.ctrlprcssname;
|
|
}
|
|
|
|
public void setCtrlprcssname(String ctrlprcssname) {
|
|
this.ctrlprcssname = ctrlprcssname;
|
|
}
|
|
|
|
public String getCtrlrevocyms() {
|
|
return this.ctrlrevocyms;
|
|
}
|
|
|
|
public void setCtrlrevocyms(String ctrlrevocyms) {
|
|
this.ctrlrevocyms = ctrlrevocyms;
|
|
}
|
|
|
|
public String getEaictrldsticctnt() {
|
|
return this.eaictrldsticctnt;
|
|
}
|
|
|
|
public void setEaictrldsticctnt(String eaictrldsticctnt) {
|
|
this.eaictrldsticctnt = eaictrldsticctnt;
|
|
}
|
|
|
|
public String getEaictrlnamedstcd() {
|
|
return this.eaictrlnamedstcd;
|
|
}
|
|
|
|
public void setEaictrlnamedstcd(String eaictrlnamedstcd) {
|
|
this.eaictrlnamedstcd = eaictrlnamedstcd;
|
|
}
|
|
|
|
public String getRevocprcssname() {
|
|
return this.revocprcssname;
|
|
}
|
|
|
|
public void setRevocprcssname(String revocprcssname) {
|
|
this.revocprcssname = revocprcssname;
|
|
}
|
|
|
|
} |