📄 tbflower.java
字号:
package objectBean;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* TbFlower entity.
*
* @author MyEclipse Persistence Tools
*/
public class TbFlower implements java.io.Serializable {
// Fields
private Long flowerId;
private String name;
private String introduce;
private Double price;
private Float discount;
private String picture;
private Date inTime;
private Integer isNew;
private String material;
private String isFor;
private String useFor;
private String pack;
private Set tbOrders = new HashSet(0);
// Constructors
/** default constructor */
public TbFlower() {
}
/** minimal constructor */
public TbFlower(Long flowerId, String name, String introduce, Double price,
Float discount, String picture, Date inTime, Integer isNew,
String material, String pack) {
this.flowerId = flowerId;
this.name = name;
this.introduce = introduce;
this.price = price;
this.discount = discount;
this.picture = picture;
this.inTime = inTime;
this.isNew = isNew;
this.material = material;
this.pack = pack;
}
/** full constructor */
public TbFlower(Long flowerId, String name, String introduce, Double price,
Float discount, String picture, Date inTime, Integer isNew,
String material, String isFor, String useFor, String pack,
Set tbOrders) {
this.flowerId = flowerId;
this.name = name;
this.introduce = introduce;
this.price = price;
this.discount = discount;
this.picture = picture;
this.inTime = inTime;
this.isNew = isNew;
this.material = material;
this.isFor = isFor;
this.useFor = useFor;
this.pack = pack;
this.tbOrders = tbOrders;
}
// Property accessors
public Long getFlowerId() {
return this.flowerId;
}
public void setFlowerId(Long flowerId) {
this.flowerId = flowerId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getIntroduce() {
return this.introduce;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
public Double getPrice() {
return this.price;
}
public void setPrice(Double price) {
this.price = price;
}
public Float getDiscount() {
return this.discount;
}
public void setDiscount(Float discount) {
this.discount = discount;
}
public String getPicture() {
return this.picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public Date getInTime() {
return this.inTime;
}
public void setInTime(Date inTime) {
this.inTime = inTime;
}
public Integer getIsNew() {
return this.isNew;
}
public void setIsNew(Integer isNew) {
this.isNew = isNew;
}
public String getMaterial() {
return this.material;
}
public void setMaterial(String material) {
this.material = material;
}
public String getIsFor() {
return this.isFor;
}
public void setIsFor(String isFor) {
this.isFor = isFor;
}
public String getUseFor() {
return this.useFor;
}
public void setUseFor(String useFor) {
this.useFor = useFor;
}
public String getPack() {
return this.pack;
}
public void setPack(String pack) {
this.pack = pack;
}
public Set getTbOrders() {
return this.tbOrders;
}
public void setTbOrders(Set tbOrders) {
this.tbOrders = tbOrders;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -