?? merchandisesort.java
字號(hào):
package mrgf.hibernate;
import java.util.*;
public class MerchandiseSort {
private String name;
private int id;
private int fatherId;
private String photo;
private MerchandiseSort fatherSort;
private Set sonSorts=new HashSet();
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setId(int id) {
this.id = id;
}
public int getId() {
return id;
}
public void setFatherId(int fatherId) {
this.fatherId = fatherId;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public void setFatherSort(MerchandiseSort fatherSort) {
this.fatherSort = fatherSort;
}
public void setSonSorts(Set sonSorts) {
this.sonSorts = sonSorts;
}
public int getFatherId() {
return fatherId;
}
public String getPhoto() {
return photo;
}
public MerchandiseSort getFatherSort() {
return fatherSort;
}
public Set getSonSorts() {
return sonSorts;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -