?? productdetail.java
字號(hào):
package main.data.domain;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* ProductDetail generated by MyEclipse - Hibernate Tools
*/
public class ProductDetail implements java.io.Serializable {
// Fields
private Integer id;
private String handler;
private Date date;
private Float subtotal;
private Short type;
private String unit;
private String remark;
private Short auditing;
private Set productItemDetails = new HashSet(0);
// Constructors
/** default constructor */
public ProductDetail() {
}
/** minimal constructor */
public ProductDetail(Short auditing) {
this.auditing = auditing;
}
/** full constructor */
public ProductDetail(String handler, Date date, Float subtotal, Short type, String unit, String remark, Short auditing, Set productItemDetails) {
this.handler = handler;
this.date = date;
this.subtotal = subtotal;
this.type = type;
this.unit = unit;
this.remark = remark;
this.auditing = auditing;
this.productItemDetails = productItemDetails;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getHandler() {
return this.handler;
}
public void setHandler(String handler) {
this.handler = handler;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
public Float getSubtotal() {
return this.subtotal;
}
public void setSubtotal(Float subtotal) {
this.subtotal = subtotal;
}
public Short getType() {
return this.type;
}
public void setType(Short type) {
this.type = type;
}
public String getUnit() {
return this.unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Short getAuditing() {
return this.auditing;
}
public void setAuditing(Short auditing) {
this.auditing = auditing;
}
public Set getProductItemDetails() {
return this.productItemDetails;
}
public void setProductItemDetails(Set productItemDetails) {
this.productItemDetails = productItemDetails;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -