|
@ -76,6 +76,11 @@ public class ProcessEntity extends CorporationAuditorEntity<ProcessVo> { |
|
|
@Convert(converter= NumericBooleanConverter.class) |
|
|
@Convert(converter= NumericBooleanConverter.class) |
|
|
private Boolean canClaimTask; |
|
|
private Boolean canClaimTask; |
|
|
|
|
|
|
|
|
|
|
|
//是否强制选择候选人
|
|
|
|
|
|
@Column(name="FORCE_SELECT_ASSIGNEE_") |
|
|
|
|
|
@Convert(converter= NumericBooleanConverter.class) |
|
|
|
|
|
private Boolean forceSelectAssignee; |
|
|
|
|
|
|
|
|
// 任务描述SQL语句,用于生成带业务信息的任务描述
|
|
|
// 任务描述SQL语句,用于生成带业务信息的任务描述
|
|
|
@Column(name="BUSINESS_DESC_SQL_", length=1024) |
|
|
@Column(name="BUSINESS_DESC_SQL_", length=1024) |
|
|
@Size(max=1024) |
|
|
@Size(max=1024) |
|
@ -114,6 +119,7 @@ public class ProcessEntity extends CorporationAuditorEntity<ProcessVo> { |
|
|
vo.setXml(this.getXml()); |
|
|
vo.setXml(this.getXml()); |
|
|
vo.setStatus(this.getStatus()); |
|
|
vo.setStatus(this.getStatus()); |
|
|
vo.setCanClaimTask(this.getCanClaimTask()); |
|
|
vo.setCanClaimTask(this.getCanClaimTask()); |
|
|
|
|
|
vo.setForceSelectAssignee(this.getForceSelectAssignee()); |
|
|
vo.setBusinessDescriptionSql(this.getBusinessDescriptionSql()); |
|
|
vo.setBusinessDescriptionSql(this.getBusinessDescriptionSql()); |
|
|
vo.setTaskHandFrontendRouteName(this.getTaskHandFrontendRouteName()); |
|
|
vo.setTaskHandFrontendRouteName(this.getTaskHandFrontendRouteName()); |
|
|
vo.setTaskHandFrontendModelName(this.getTaskHandFrontendModelName()); |
|
|
vo.setTaskHandFrontendModelName(this.getTaskHandFrontendModelName()); |
|
@ -202,6 +208,14 @@ public class ProcessEntity extends CorporationAuditorEntity<ProcessVo> { |
|
|
this.canClaimTask = canClaimTask; |
|
|
this.canClaimTask = canClaimTask; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Boolean getForceSelectAssignee() { |
|
|
|
|
|
return forceSelectAssignee; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setForceSelectAssignee(Boolean forceSelectAssignee) { |
|
|
|
|
|
this.forceSelectAssignee = forceSelectAssignee; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public String getBusinessDescriptionSql() { |
|
|
public String getBusinessDescriptionSql() { |
|
|
return businessDescriptionSql; |
|
|
return businessDescriptionSql; |
|
|
} |
|
|
} |
|
|