31 lines
659 B
Java
31 lines
659 B
Java
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;
|
|
}
|
|
|
|
} |