📄 medicalcourses.java
字号:
package com.tsinghuait.st0717.hospitalsystem.dto;
public class Medicalcourses implements java.io.Serializable{
private Integer id;
private String name;
private int type;
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public Medicalcourses() {
}
public Medicalcourses(Integer id) {
this.id = id;
}
public Medicalcourses(Integer id, String name) {
this.id = id;
this.name = name;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -