📄 product.java
字号:
package com.tarena.develop.entity;
import java.util.List;
public class Product {
private Integer pid;
private String name;
private String discription;
private double price;
private String author;
private String image;
private List<OrderLine> orderlines;
public Integer getPid() {
return pid;
}
public void setPid(Integer pid) {
this.pid = pid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDiscription() {
return discription;
}
public void setDiscription(String discription) {
this.discription = discription;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public List<OrderLine> getOrderlines() {
return orderlines;
}
public void setOrderlines(List<OrderLine> orderlines) {
this.orderlines = orderlines;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -