📄 logworkvo.java
字号:
package com.yondor.oa.db.logwork.dao;
import java.util.Date;
import com.yondor.oa.db.content.dao.Content;
import com.yondor.oa.db.operator.dao.Operator;
public class LogworkVO {
// Fields
private Long logworkid;
private String title;
private Content contenttag;
private Date starttime;
private Date endtime;
private Operator authorop;
private Operator recevieop;
private String place;
private String decription;
// Constructors
/** default constructor */
public LogworkVO() {
}
public LogworkVO(Operator authorop,Operator recevieop){
this.authorop=authorop;
this.recevieop=recevieop;
}
/** full constructor */
public LogworkVO(Operator authorop, String title, Content contenttag, Date starttime, Date endtime, Operator 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 Operator getAuthorop() {
return authorop;
}
public void setAuthorop(Operator authorop) {
this.authorop = authorop;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public Content getContenttag() {
return contenttag;
}
public void setContenttag(Content 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 Operator getRecevieop() {
return recevieop;
}
public void setRecevieop(Operator 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 + -