📄 sysvocational.java
字号:
package com.chinahr.pojo;
import java.util.Date;
/**
* SysVocational generated by MyEclipse Persistence Tools
*/
public class SysVocational implements java.io.Serializable {
// Fields
private Integer vocId;
private String vocName;
private String vocDesc;
private Date vocDate;
private Date vocTime;
private Integer vocGuiId;
// Constructors
/** default constructor */
public SysVocational() {
}
/** full constructor */
public SysVocational(String vocName, String vocDesc, Date vocDate,
Date vocTime, Integer vocGuiId) {
this.vocName = vocName;
this.vocDesc = vocDesc;
this.vocDate = vocDate;
this.vocTime = vocTime;
this.vocGuiId = vocGuiId;
}
// Property accessors
public Integer getVocId() {
return this.vocId;
}
public void setVocId(Integer vocId) {
this.vocId = vocId;
}
public String getVocName() {
return this.vocName;
}
public void setVocName(String vocName) {
this.vocName = vocName;
}
public String getVocDesc() {
return this.vocDesc;
}
public void setVocDesc(String vocDesc) {
this.vocDesc = vocDesc;
}
public Date getVocDate() {
return this.vocDate;
}
public void setVocDate(Date vocDate) {
this.vocDate = vocDate;
}
public Date getVocTime() {
return this.vocTime;
}
public void setVocTime(Date vocTime) {
this.vocTime = vocTime;
}
public Integer getVocGuiId() {
return this.vocGuiId;
}
public void setVocGuiId(Integer vocGuiId) {
this.vocGuiId = vocGuiId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -