📄 sysworkletter.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -