📄 attendrecord.java
字号:
/**
* FileName:AttendRecord.java,v 1.0 created in 2008-11-7 上午10:54:06
* Created by Noel Han
* Copyright (c) 2008 Ecjtu
* All Rights Reserved.
*/
package cn.jx.ecjtu.oa.ps.pojo;
/**
* @todo:考勤记录对象
* @author Noel Han
* @version $Revision: 1.2 $
* @since 1.0
*/
public class AttendRecord {
private int recordId;
private int userId;
private int statusId;
private int appTypeId;
private String destination;
private String reason;
private int censorId;
private String toLeave;
private String toReturn;
private String backTime;
private String userName;
public AttendRecord() {
// TODO Auto-generated constructor stub
}
public AttendRecord(int recordId, int userId, int statusId, int appTypeId,
String destination, String reason, int censorId, String toLeave,
String toReturn, String backTime, String userName) {
super();
this.recordId = recordId;
this.userId = userId;
this.statusId = statusId;
this.appTypeId = appTypeId;
this.destination = destination;
this.reason = reason;
this.censorId = censorId;
this.toLeave = toLeave;
this.toReturn = toReturn;
this.backTime = backTime;
this.userName = userName;
}
public int getAppTypeId() {
return appTypeId;
}
public void setAppTypeId(int appTypeId) {
this.appTypeId = appTypeId;
}
public String getBackTime() {
return backTime;
}
public void setBackTime(String backTime) {
this.backTime = backTime;
}
public int getCensorId() {
return censorId;
}
public void setCensorId(int censorId) {
this.censorId = censorId;
}
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public int getRecordId() {
return recordId;
}
public void setRecordId(int recordId) {
this.recordId = recordId;
}
public int getStatusId() {
return statusId;
}
public void setStatusId(int statusId) {
this.statusId = statusId;
}
public String getToLeave() {
return toLeave;
}
public void setToLeave(String toLeave) {
this.toLeave = toLeave;
}
public String getToReturn() {
return toReturn;
}
public void setToReturn(String toReturn) {
this.toReturn = toReturn;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -