📄 productcustomer.java
字号:
package main.data.domain;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* ProductCustomer generated by MyEclipse - Hibernate Tools
*/
public class ProductCustomer implements java.io.Serializable {
// Fields
private Integer id;
private Customer customer;
private Date date;
private Float subtotal;
private String type;
private String remark;
private Short auditing;
private Set productCustomerItems = new HashSet(0);
// Constructors
/** default constructor */
public ProductCustomer() {
}
/** minimal constructor */
public ProductCustomer(Short auditing) {
this.auditing = auditing;
}
/** full constructor */
public ProductCustomer(Customer customer, Date date, Float subtotal, String type, String remark, Short auditing, Set productCustomerItems) {
this.customer = customer;
this.date = date;
this.subtotal = subtotal;
this.type = type;
this.remark = remark;
this.auditing = auditing;
this.productCustomerItems = productCustomerItems;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Customer getCustomer() {
return this.customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
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 String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
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 getProductCustomerItems() {
return this.productCustomerItems;
}
public void setProductCustomerItems(Set productCustomerItems) {
this.productCustomerItems = productCustomerItems;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -