?? lineitem.java
字號:
package org.itfuture.www.po;
/**
* Lineitem generated by MyEclipse - Hibernate Tools
*/
public class Lineitem implements java.io.Serializable {
// Fields
private LineitemId id;
private Item item;
private Long quantity;
private Double listprice;
// Constructors
/** default constructor */
public Lineitem() {
}
/** minimal constructor */
public Lineitem(Long quantity, Double listprice) {
this.quantity = quantity;
this.listprice = listprice;
}
/** full constructor */
public Lineitem(Item item, Long quantity, Double listprice) {
this.item = item;
this.quantity = quantity;
this.listprice = listprice;
}
// Property accessors
public Lineitem(LineitemId id, Item item, Long quantity, Double listprice) {
super();
this.id = id;
this.item = item;
this.quantity = quantity;
this.listprice = listprice;
}
public LineitemId getId() {
return this.id;
}
public void setId(LineitemId id) {
this.id = id;
}
public Item getItem() {
return this.item;
}
public void setItem(Item item) {
this.item = item;
}
public Long getQuantity() {
return this.quantity;
}
public void setQuantity(Long quantity) {
this.quantity = quantity;
}
public Double getListprice() {
return listprice;
}
public void setListprice(Double listprice) {
this.listprice = listprice;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -