📄 movietype.java
字号:
package com.movie.dojo;
/**
* Movietype entity.
*
* @author MyEclipse Persistence Tools
*/
public class Movietype implements java.io.Serializable {
// Fields
private Integer typeid;
private String typename;
// Constructors
/** default constructor */
public Movietype() {
}
/** full constructor */
public Movietype(String typename) {
this.typename = typename;
}
// Property accessors
public Integer getTypeid() {
return this.typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
public String getTypename() {
return this.typename;
}
public void setTypename(String typename) {
this.typename = typename;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -