?? abstract科室表.java
字號:
package hospital.Model;
import java.util.HashSet;
import java.util.Set;
/**
* Abstract科室表 generated by MyEclipse - Hibernate Tools
*/
public abstract class Abstract科室表 implements java.io.Serializable {
// Fields
private String 科室編號;
private String 名稱;
private String 負責人編號;
private String 科室位置;
private Set 醫生表s = new HashSet(0);
private Set 專家號登記表s = new HashSet(0);
private Set 病案信息表s = new HashSet(0);
// Constructors
/** default constructor */
public Abstract科室表() {
}
/** minimal constructor */
public Abstract科室表(String 科室編號, String 名稱, String 負責人編號) {
this.科室編號 = 科室編號;
this.名稱 = 名稱;
this.負責人編號 = 負責人編號;
}
/** full constructor */
public Abstract科室表(String 科室編號, String 名稱, String 負責人編號, String 科室位置, Set 醫生表s, Set 專家號登記表s, Set 病案信息表s) {
this.科室編號 = 科室編號;
this.名稱 = 名稱;
this.負責人編號 = 負責人編號;
this.科室位置 = 科室位置;
this.醫生表s = 醫生表s;
this.專家號登記表s = 專家號登記表s;
this.病案信息表s = 病案信息表s;
}
// Property accessors
public String get科室編號() {
return this.科室編號;
}
public void set科室編號(String 科室編號) {
this.科室編號 = 科室編號;
}
public String get名稱() {
return this.名稱;
}
public void set名稱(String 名稱) {
this.名稱 = 名稱;
}
public String get負責人編號() {
return this.負責人編號;
}
public void set負責人編號(String 負責人編號) {
this.負責人編號 = 負責人編號;
}
public String get科室位置() {
return this.科室位置;
}
public void set科室位置(String 科室位置) {
this.科室位置 = 科室位置;
}
public Set get醫生表s() {
return this.醫生表s;
}
public void set醫生表s(Set 醫生表s) {
this.醫生表s = 醫生表s;
}
public Set get專家號登記表s() {
return this.專家號登記表s;
}
public void set專家號登記表s(Set 專家號登記表s) {
this.專家號登記表s = 專家號登記表s;
}
public Set get病案信息表s() {
return this.病案信息表s;
}
public void set病案信息表s(Set 病案信息表s) {
this.病案信息表s = 病案信息表s;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -