📄 ttask.java
字号:
package com.tatang.po;
import java.util.Date;
/**
* TTask entity.
*
* @author MyEclipse Persistence Tools
*/
public class TTask implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private String password;
private String description;
private Date start;
private Date end;
private Date expStart;
private Date expEnd;
private String managerId;
private String clerkId;
private String state;
// Constructors
/** default constructor */
public TTask() {
}
/** minimal constructor */
public TTask(Integer id, String name, String password, String managerId,
String clerkId, String state) {
this.id = id;
this.name = name;
this.password = password;
this.managerId = managerId;
this.clerkId = clerkId;
this.state = state;
}
/** full constructor */
public TTask(Integer id, String name, String password, String description,
Date start, Date end, Date expStart, Date expEnd, String managerId,
String clerkId, String state) {
this.id = id;
this.name = name;
this.password = password;
this.description = description;
this.start = start;
this.end = end;
this.expStart = expStart;
this.expEnd = expEnd;
this.managerId = managerId;
this.clerkId = clerkId;
this.state = state;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getStart() {
return this.start;
}
public void setStart(Date start) {
this.start = start;
}
public Date getEnd() {
return this.end;
}
public void setEnd(Date end) {
this.end = end;
}
public Date getExpStart() {
return this.expStart;
}
public void setExpStart(Date expStart) {
this.expStart = expStart;
}
public Date getExpEnd() {
return this.expEnd;
}
public void setExpEnd(Date expEnd) {
this.expEnd = expEnd;
}
public String getManagerId() {
return this.managerId;
}
public void setManagerId(String managerId) {
this.managerId = managerId;
}
public String getClerkId() {
return this.clerkId;
}
public void setClerkId(String clerkId) {
this.clerkId = clerkId;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -