📄 logwork.java
字号:
package com.yondor.oa.db.logwork.dao;
import java.util.Date;
import com.yondor.oa.db.operator.dao.Operator;
/**
* Logwork generated by MyEclipse - Hibernate Tools
*/
public class Logwork implements java.io.Serializable {
// Fields
private Long logworkid;
private String title;
private Long contenttag;
private Date starttime;
private Date endtime;
private Long authorop;
private Long recevieop;
private String place;
private String decription;
// Constructors
/** default constructor */
public Logwork() {
}
/** full constructor */
public Logwork(Long authorop, String title, Long contenttag, Date starttime, Date endtime, Long recevieop, String place, String decription) {
this.authorop = authorop;
this.title = title;
this.contenttag = contenttag;
this.starttime = starttime;
this.endtime = endtime;
this.recevieop = recevieop;
this.place = place;
this.decription = decription;
}
// Property accessors
public Long getLogworkid() {
return this.logworkid;
}
public void setLogworkid(Long logworkid) {
this.logworkid = logworkid;
}
public Long getAuthorop() {
return authorop;
}
public void setAuthorop(Long authorop) {
this.authorop = authorop;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public Long getContenttag() {
return this.contenttag;
}
public void setContenttag(Long contenttag) {
this.contenttag = contenttag;
}
public Date getStarttime() {
return this.starttime;
}
public void setStarttime(Date starttime) {
this.starttime = starttime;
}
public Date getEndtime() {
return this.endtime;
}
public void setEndtime(Date endtime) {
this.endtime = endtime;
}
public Long getRecevieop() {
return this.recevieop;
}
public void setRecevieop(Long recevieop) {
this.recevieop = recevieop;
}
public String getPlace() {
return this.place;
}
public void setPlace(String place) {
this.place = place;
}
public String getDecription() {
return this.decription;
}
public void setDecription(String decription) {
this.decription = decription;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -