📄 lxfworkshopemployee.java
字号:
package com.briup.bean;
import java.util.Date;
/**
* LxfWorkshopEmployee generated by MyEclipse - Hibernate Tools
*/
public class LxfWorkshopEmployee implements java.io.Serializable {
// Fields
private long id;
private LxfWorkshopRoom lxfWorkshopRoom;
private String name;
private String gender;
private Date begintime;
private long dutystatus;
private long isonline;
// Constructors
/** default constructor */
public LxfWorkshopEmployee() {
}
/** minimal constructor */
public LxfWorkshopEmployee(String name, String gender, Date begintime) {
this.name = name;
this.gender = gender;
this.begintime = begintime;
}
/** full constructor */
public LxfWorkshopEmployee(LxfWorkshopRoom lxfWorkshopRoom, String name, String gender, Date begintime, long dutystatus, long isonline) {
this.lxfWorkshopRoom = lxfWorkshopRoom;
this.name = name;
this.gender = gender;
this.begintime = begintime;
this.dutystatus = dutystatus;
this.isonline = isonline;
}
// 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 getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public Date getBegintime() {
return this.begintime;
}
public void setBegintime(Date begintime) {
this.begintime = begintime;
}
public long getDutystatus() {
return this.dutystatus;
}
public void setDutystatus(long dutystatus) {
this.dutystatus = dutystatus;
}
public long getIsonline() {
return this.isonline;
}
public void setIsonline(long isonline) {
this.isonline = isonline;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -