classuser.java
来自「基本分数查询功能,自己的毕业设计作品!希望能给大家一点帮助!」· Java 代码 · 共 53 行
JAVA
53 行
package org.xk.po;
public class ClassUser {
private int class_id;
private String class_name;
private String class_property;
private int port_id;
private int teacher_id;
public int getTeacher_id() {
return teacher_id;
}
public void setTeacher_id(int teacher_id) {
this.teacher_id = teacher_id;
}
public int getClass_id() {
return class_id;
}
public void setClass_id(int class_id) {
this.class_id = class_id;
}
public String getClass_name() {
return class_name;
}
public void setClass_name(String class_name) {
this.class_name = class_name;
}
public String getClass_property() {
return class_property;
}
public void setClass_property(String class_property) {
this.class_property = class_property;
}
public int getPort_id() {
return port_id;
}
public void setPort_id(int port_id) {
this.port_id = port_id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?