📄 actiparticipant.java
字号:
package cn.com.iaspec.workflow.vo.db;
import java.io.*;
import cn.com.iaspec.workflow.*;
/**
*
* <p>Title: 工作流引擎表ACTIPARTICIPANT vo</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: IASPEC Technologies</p>
* @author xiesonglin
* @version 1.0
*/
public class ActiParticipant
implements Serializable{
private long atpAtdId=WorkflowConstant.LONG_INIT_VALUE;
private long atpParticipantId=WorkflowConstant.LONG_INIT_VALUE;
private String atpPartiName;
private String atpDesc;
private int atpPartiType=WorkflowConstant.INT_INIT_VALUE;
private String atpCondition;
private int atpSettingMode=WorkflowConstant.INT_INIT_VALUE;
private int atpOption=WorkflowConstant.INT_INIT_VALUE;
private int atpAssignMethod=WorkflowConstant.INT_INIT_VALUE;
public int getAtpOption(){
return atpOption;
}
public int getAtpSettingMode(){
return atpSettingMode;
}
public String getAtpCondition(){
return atpCondition;
}
public int getAtpPartiType(){
return atpPartiType;
}
public String getAtpDesc(){
return atpDesc;
}
public String getAtpPartiName(){
return atpPartiName;
}
public long getAtpParticipantId(){
return atpParticipantId;
}
public void setAtpAtdId(long atpAtdId){
this.atpAtdId=atpAtdId;
}
public void setAtpOption(int atpOption){
this.atpOption=atpOption;
}
public void setAtpSettingMode(int atpSettingMode){
this.atpSettingMode=atpSettingMode;
}
public void setAtpCondition(String atpCondition){
this.atpCondition=atpCondition;
}
public void setAtpPartiType(int atpPartiType){
this.atpPartiType=atpPartiType;
}
public void setAtpDesc(String atpDesc){
this.atpDesc=atpDesc;
}
public void setAtpPartiName(String atpPartiName){
this.atpPartiName=atpPartiName;
}
public void setAtpParticipantId(long atpParticipantId){
this.atpParticipantId=atpParticipantId;
}
public void setAtpAssignMethod(int atpAssignMethod){
this.atpAssignMethod=atpAssignMethod;
}
public long getAtpAtdId(){
return atpAtdId;
}
public int getAtpAssignMethod(){
return atpAssignMethod;
}
public ActiParticipant(){
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -