This commit is contained in:
Rinjae
2025-09-05 18:34:26 +09:00
commit 0f148e997e
252 changed files with 29930 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
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;
}
}