📄 agileactivity.java
字号:
package com.hongsoft.agile;
import com.hongsoft.agile.hpdl.HpdlFacade;
import com.hongsoft.agile.workflow.Util;
/**
* @author hongsoft.com TODO To change the template for this generated type comment go to Window - Preferences - Java -
* Code Style - Code Templates
*/
public class AgileActivity {
private String activityInsId;
// 活动所属的流程实例
private String processInsId;
private String status;
// 用于产生任务
private String acceptedUserId;
public String getActivityName() {
return HpdlFacade.getActivityName(Util.getDefIdByInsId(activityInsId));
}
public String getProcessName() {
return HpdlFacade.getProcessName(Util.getDefIdByInsId(processInsId));
}
/**
* @return Returns the activityInsId.
*/
public String getActivityInsId() {
return activityInsId;
}
/**
* @param activityInsId The activityInsId to set.
*/
public void setActivityInsId(String activityInsId) {
this.activityInsId = activityInsId;
}
/**
* @return Returns the processInsId.
*/
public String getProcessInsId() {
return processInsId;
}
/**
* @param processInsId The processInsId to set.
*/
public void setProcessInsId(String processInsId) {
this.processInsId = processInsId;
}
/**
* @return Returns the status.
*/
public String getStatus() {
return status;
}
/**
* @param status The status to set.
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return Returns the acceptedUserId.
*/
public String getAcceptedUserId() {
return acceptedUserId;
}
/**
* @param acceptedUserId The acceptedUserId to set.
*/
public void setAcceptedUserId(String acceptedUserId) {
this.acceptedUserId = acceptedUserId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -