87 lines
1.4 KiB
Java
87 lines
1.4 KiB
Java
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;
|
|
}
|
|
|
|
} |