sessionobj.java
来自「spring+hibernate+struts开发的校务oa系统」· Java 代码 · 共 67 行
JAVA
67 行
package com.yondor.oa.webapp.session;
import com.yondor.oa.db.message.dao.MessageVO;
import com.yondor.oa.db.operator.dao.OperatorVO;
import com.yondor.oa.db.transaction.dao.TransactionVO;
public class SessionObj {
private OperatorVO operatorVO;
private int notReadTranCount;
private int notCheckTranCount;
private int notFinishTranCount;
private TransactionVO transactionVO;
private MessageVO messageVO;
public SessionObj() {}
public MessageVO getMessageVO() {
return messageVO;
}
public void setMessageVO(MessageVO messageVO) {
this.messageVO = messageVO;
}
public TransactionVO getTransactionVO() {
return transactionVO;
}
public void setTransactionVO(TransactionVO transactionVO) {
this.transactionVO = transactionVO;
}
public OperatorVO getOperatorVO() {
return operatorVO;
}
public void setOperatorVO(OperatorVO operatorVO) {
this.operatorVO = operatorVO;
}
public int getNotCheckTranCount() {
return notCheckTranCount;
}
public void setNotCheckTranCount(int notCheckTranCount) {
this.notCheckTranCount = notCheckTranCount;
}
public int getNotFinishTranCount() {
return notFinishTranCount;
}
public void setNotFinishTranCount(int notFinishTranCount) {
this.notFinishTranCount = notFinishTranCount;
}
public int getNotReadTranCount() {
return notReadTranCount;
}
public void setNotReadTranCount(int notReadTranCount) {
this.notReadTranCount = notReadTranCount;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?