76 lines
1.5 KiB
Java
76 lines
1.5 KiB
Java
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;
|
|
}
|
|
|
|
} |