📄 selectinfo.java
字号:
package com.student.vo;
/**
* @hibernate.class
* table="T_Salary"
*/
public class SelectInfo {
private Long selectUID;
private Long studentUID;
private Long classUID;
public SelectInfo() {
}
public Long getSelectUID() {
return selectUID;
}
public void setSelectUID(Long selectUID) {
this.selectUID = selectUID;
}
public Long getStudentUID() {
return studentUID;
}
public void setStudentUID(Long studentUID) {
this.studentUID = studentUID;
}
public Long getClassUID() {
return classUID;
}
public void setClassUID(Long classUID) {
this.classUID = classUID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -