📄 goods.java
字号:
package com.oa.db;
/**
* Goods generated by MyEclipse - Hibernate Tools
*/
public class Goods implements java.io.Serializable {
// Fields
private Integer id;
private String goodsname;
private String buydate;
private Integer price;
private Integer amount;
private Integer total;
private String describer;
private String buyperson;
private String useperson;
// Constructors
/** default constructor */
public Goods() {
}
/** full constructor */
public Goods(String goodsname, String buydate, Integer price, Integer amount, Integer total, String describer, String buyperson, String useperson) {
this.goodsname = goodsname;
this.buydate = buydate;
this.price = price;
this.amount = amount;
this.total = total;
this.describer = describer;
this.buyperson = buyperson;
this.useperson = useperson;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getGoodsname() {
return this.goodsname;
}
public void setGoodsname(String goodsname) {
this.goodsname = goodsname;
}
public String getBuydate() {
return this.buydate;
}
public void setBuydate(String buydate) {
this.buydate = buydate;
}
public Integer getPrice() {
return this.price;
}
public void setPrice(Integer price) {
this.price = price;
}
public Integer getAmount() {
return this.amount;
}
public void setAmount(Integer amount) {
this.amount = amount;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public String getDescriber() {
return this.describer;
}
public void setDescriber(String describer) {
this.describer = describer;
}
public String getBuyperson() {
return this.buyperson;
}
public void setBuyperson(String buyperson) {
this.buyperson = buyperson;
}
public String getUseperson() {
return this.useperson;
}
public void setUseperson(String useperson) {
this.useperson = useperson;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -