📄 invoice.java
字号:
package com.pet.pojo;
import java.util.Date;
/**
* Invoice generated by MyEclipse Persistence Tools
*/
public class Invoice implements java.io.Serializable {
private static final long serialVersionUID = 5703105609035467761L;
private Integer iid;
private Treatmentproject treatmentproject;
private Pet pet;
private Date invoiceDate;
private Double totalPrice;
private Date paymentDate;
private String paymentStyle;
// Constructors
/** default constructor */
public Invoice() {
}
/** full constructor */
public Invoice(Treatmentproject treatmentproject, Pet pet,
Date invoiceDate, Double totalPrice, Date paymentDate,
String paymentStyle) {
this.treatmentproject = treatmentproject;
this.pet = pet;
this.invoiceDate = invoiceDate;
this.totalPrice = totalPrice;
this.paymentDate = paymentDate;
this.paymentStyle = paymentStyle;
}
// Property accessors
public Integer getIid() {
return this.iid;
}
public void setIid(Integer iid) {
this.iid = iid;
}
public Treatmentproject getTreatmentproject() {
return this.treatmentproject;
}
public void setTreatmentproject(Treatmentproject treatmentproject) {
this.treatmentproject = treatmentproject;
}
public Pet getPet() {
return this.pet;
}
public void setPet(Pet pet) {
this.pet = pet;
}
public Date getInvoiceDate() {
return this.invoiceDate;
}
public void setInvoiceDate(Date invoiceDate) {
this.invoiceDate = invoiceDate;
}
public Double getTotalPrice() {
return this.totalPrice;
}
public void setTotalPrice(Double totalPrice) {
this.totalPrice = totalPrice;
}
public Date getPaymentDate() {
return this.paymentDate;
}
public void setPaymentDate(Date paymentDate) {
this.paymentDate = paymentDate;
}
public String getPaymentStyle() {
return this.paymentStyle;
}
public void setPaymentStyle(String paymentStyle) {
this.paymentStyle = paymentStyle;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -