📄 lxfworkshopproduct.java~
字号:
package com.briup.bean;
import java.util.Date;
/**
* KlarckWorkshopProduct generated by MyEclipse - Hibernate Tools
*/
public class LxfWorkshopProduct implements java.io.Serializable {
// Fields
private long id;
private LxfWorkshopRoom lxfWorkshopRoom;
private String productname;
private String type;
private long quantity;
private Date finishtime;
// Constructors
/** default constructor */
public LxfWorkshopProduct() {
}
/** minimal constructor */
public LxfWorkshopProduct(String productname, String type, long quantity, Date finishtime) {
this.productname = productname;
this.type = type;
this.quantity = quantity;
this.finishtime = finishtime;
}
/** full constructor */
public LxfWorkshopProduct(LxfWorkshopRoom lxfWorkshopRoom, String productname, String type, long quantity, Date finishtime) {
this.lxfWorkshopRoom = lxfWorkshopRoom;
this.productname = productname;
this.type = type;
this.quantity = quantity;
this.finishtime = finishtime;
}
// Property accessors
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public LxfWorkshopRoom getLxfWorkshopRoom() {
return this.lxfWorkshopRoom;
}
public void setLxfWorkshopRoom(LxfWorkshopRoom lxfWorkshopRoom) {
this.lxfWorkshopRoom = lxfWorkshopRoom;
}
public String getProductname() {
return this.productname;
}
public void setProductname(String productname) {
this.productname = productname;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public long getQuantity() {
return this.quantity;
}
public void setQuantity(long quantity) {
this.quantity = quantity;
}
public Date getFinishtime() {
return this.finishtime;
}
public void setFinishtime(Date finishtime) {
this.finishtime = finishtime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -