📄 systemplete.java
字号:
package com.chinahr.pojo;
import java.util.Date;
/**
* SysTemplete generated by MyEclipse Persistence Tools
*/
public class SysTemplete implements java.io.Serializable {
// Fields
private Integer tepId;
private UserInd userInd;
private String tepName;
private String tepContent;
private Date createDate;
private Date createTime;
private Date updateDate;
private Date updateTime;
// Constructors
/** default constructor */
public SysTemplete() {
}
/** full constructor */
public SysTemplete(UserInd userInd, String tepName, String tepContent,
Date createDate, Date createTime, Date updateDate, Date updateTime) {
this.userInd = userInd;
this.tepName = tepName;
this.tepContent = tepContent;
this.createDate = createDate;
this.createTime = createTime;
this.updateDate = updateDate;
this.updateTime = updateTime;
}
// Property accessors
public Integer getTepId() {
return this.tepId;
}
public void setTepId(Integer tepId) {
this.tepId = tepId;
}
public UserInd getUserInd() {
return this.userInd;
}
public void setUserInd(UserInd userInd) {
this.userInd = userInd;
}
public String getTepName() {
return this.tepName;
}
public void setTepName(String tepName) {
this.tepName = tepName;
}
public String getTepContent() {
return this.tepContent;
}
public void setTepContent(String tepContent) {
this.tepContent = tepContent;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateDate() {
return this.updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
public Date getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -