📄 systemcoursecode.java
字号:
package com.hibernate.model;
/**
* SystemCourseCode generated by MyEclipse - Hibernate Tools
*/
public class SystemCourseCode implements java.io.Serializable {
// Fields
private String code;
private String subject;
// Constructors
/** default constructor */
public SystemCourseCode() {
}
/** minimal constructor */
public SystemCourseCode(String code) {
this.code = code;
}
/** full constructor */
public SystemCourseCode(String code, String subject) {
this.code = code;
this.subject = subject;
}
// Property accessors
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSubject() {
return this.subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -