📄 sysjobtake.java
字号:
package com.chinahr.pojo;
import java.util.Date;
/**
* SysJobTake generated by MyEclipse Persistence Tools
*/
public class SysJobTake implements java.io.Serializable {
// Fields
private Integer takeId;
private UserInd userInd;
private String takeName;
private String takeWheel;
private Date takeDate;
private Date takeTime;
private Date updateDate;
private Date updateTime;
private Integer takeState;
// Constructors
/** default constructor */
public SysJobTake() {
}
/** full constructor */
public SysJobTake(UserInd userInd, String takeName, String takeWheel,
Date takeDate, Date takeTime, Date updateDate, Date updateTime,
Integer takeState) {
this.userInd = userInd;
this.takeName = takeName;
this.takeWheel = takeWheel;
this.takeDate = takeDate;
this.takeTime = takeTime;
this.updateDate = updateDate;
this.updateTime = updateTime;
this.takeState = takeState;
}
// Property accessors
public Integer getTakeId() {
return this.takeId;
}
public void setTakeId(Integer takeId) {
this.takeId = takeId;
}
public UserInd getUserInd() {
return this.userInd;
}
public void setUserInd(UserInd userInd) {
this.userInd = userInd;
}
public String getTakeName() {
return this.takeName;
}
public void setTakeName(String takeName) {
this.takeName = takeName;
}
public String getTakeWheel() {
return this.takeWheel;
}
public void setTakeWheel(String takeWheel) {
this.takeWheel = takeWheel;
}
public Date getTakeDate() {
return this.takeDate;
}
public void setTakeDate(Date takeDate) {
this.takeDate = takeDate;
}
public Date getTakeTime() {
return this.takeTime;
}
public void setTakeTime(Date takeTime) {
this.takeTime = takeTime;
}
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;
}
public Integer getTakeState() {
return this.takeState;
}
public void setTakeState(Integer takeState) {
this.takeState = takeState;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -