sysworkletter.java
来自「仿招聘网站 SSH框架 ajax功能」· Java 代码 · 共 91 行
JAVA
91 行
package com.chinahr.pojo;
import java.util.Date;
/**
* SysWorkLetter generated by MyEclipse Persistence Tools
*/
public class SysWorkLetter implements java.io.Serializable {
// Fields
private Integer letterId;
private UserInd userInd;
private String letName;
private String letContent;
private Date letDate;
private Date letTime;
// Constructors
/** default constructor */
public SysWorkLetter() {
}
/** full constructor */
public SysWorkLetter(UserInd userInd, String letName, String letContent,
Date letDate, Date letTime) {
this.userInd = userInd;
this.letName = letName;
this.letContent = letContent;
this.letDate = letDate;
this.letTime = letTime;
}
// Property accessors
public Integer getLetterId() {
return this.letterId;
}
public void setLetterId(Integer letterId) {
this.letterId = letterId;
}
public UserInd getUserInd() {
return this.userInd;
}
public void setUserInd(UserInd userInd) {
this.userInd = userInd;
}
public String getLetName() {
return this.letName;
}
public void setLetName(String letName) {
this.letName = letName;
}
public String getLetContent() {
return this.letContent;
}
public void setLetContent(String letContent) {
this.letContent = letContent;
}
public Date getLetDate() {
return this.letDate;
}
public void setLetDate(Date letDate) {
this.letDate = letDate;
}
public Date getLetTime() {
return this.letTime;
}
public void setLetTime(Date letTime) {
this.letTime = letTime;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?