update - 修改工作流默认按钮的元数据
This commit is contained in:
parent
1ec3dab101
commit
be14f71ab9
@ -34,7 +34,7 @@ public class CooperationOrgDTO implements Serializable {
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public static class OrgScope {
|
||||
public static class OrgScope implements Serializable {
|
||||
/**
|
||||
* 工作台类型
|
||||
*/
|
||||
|
||||
@ -32,7 +32,7 @@ public class BpmnProcessInstanceCreateDTO {
|
||||
/**
|
||||
* 模型归属租户 ID
|
||||
* <p>
|
||||
* 可为空,为空时,默认使用发起人的租户 ID
|
||||
* 为空时,默认是编辑公共流程模型, 如果是代运营创建,则必填
|
||||
*/
|
||||
@ApiModelProperty(value = "发起的模型是属于哪个租户")
|
||||
private String tenantId;
|
||||
|
||||
@ -33,7 +33,7 @@ public class ProcessConfigController implements ProcessConfigApi {
|
||||
.map(buttonEnum -> new BpmnButtonMetaInfo()
|
||||
.setOrder(buttonEnum.getOrder())
|
||||
.setBtnKey(buttonEnum.getBtnKey())
|
||||
.setBtnName(buttonEnum.getBtnKey())
|
||||
.setBtnName(buttonEnum.getBtnName())
|
||||
.setChecked(false)
|
||||
.setDisabled(false)).collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user