?? merchandiseinfo.java
字號:
package mrgf.hibernate;
public class MerchandiseInfo {
private String name;
private int id;
private String type;
private int sortId;
private String photo;
private String head;
private String introduce;
private int price;
private String remark;
private int amount=1;
public MerchandiseInfo() {
}
public void setName(String name) {
this.name = name;
}
public void setId(int id) {
this.id = id;
}
public void setType(String type) {
this.type = type;
}
public void setSortId(int sortId) {
this.sortId = sortId;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public void setHead(String head) {
this.head = head;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
public void setPrice(int price) {
this.price = price;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getName() {
return name;
}
public int getId() {
return id;
}
public String getType() {
return type;
}
public int getSortId() {
return sortId;
}
public String getPhoto() {
return photo;
}
public String getHead() {
return head;
}
public String getIntroduce() {
return introduce;
}
public int getPrice() {
return price;
}
public String getRemark() {
return remark;
}
public int getAmount() {
return amount;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -