📄 diagnosis.java
字号:
package com.tsinghuait.st0717.hospitalsystem.dto;
/**
* Diagnosis generated by MyEclipse - Hibernate Tools
*/
public class Diagnosis implements java.io.Serializable{
// Fields
private Integer id;
private String type;
private String info;
private Integer doctorId;
private Integer patientId;
public Diagnosis() {
}
public Diagnosis(Integer id) {
this.id = id;
}
public Diagnosis(Integer id, String type, String info, Integer doctorId, Integer patientId) {
this.id = id;
this.type = type;
this.info = info;
this.doctorId = doctorId;
this.patientId = patientId;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getInfo() {
return this.info;
}
public void setInfo(String info) {
this.info = info;
}
public Integer getDoctorId() {
return this.doctorId;
}
public void setDoctorId(Integer doctorId) {
this.doctorId = doctorId;
}
public Integer getPatientId() {
return this.patientId;
}
public void setPatientId(Integer patientId) {
this.patientId = patientId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -