54 lines
993 B
Java
54 lines
993 B
Java
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;
|
|
}
|
|
|
|
} |