Files
elink-online-core/src/model/StdMsgLoutDeploy.java
T
Rinjae 0f148e997e init
2025-09-05 18:34:26 +09:00

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;
}
}