Commit 54fec14a by huangfusuper

Merge remote-tracking branch 'origin/developer' into developer

parents 19fee5a2 033e0974
...@@ -3,18 +3,12 @@ package com.byit.enums; ...@@ -3,18 +3,12 @@ package com.byit.enums;
/** /**
* @description: 工作流属性的枚举类 * @description: 工作流属性的枚举类
* @author: gml * @author: gml
* @date: 2019-12-26 15:17 * @create: 2019-12-26 15:17
* */ */
public enum FlowPropertyEnum { public enum FlowPropertyEnum {
HAVE_DEPEND("0", "有下游依赖"),
NO_HAVE_DEPEND("1", "没有下游依赖"),
IS_INNER("0", "是内嵌工作流"), IS_INNER("0", "是内嵌工作流"),
ISNOT_INNER("1", "不是内嵌工作流"), ISNOT_INNER("1", "不是内嵌工作流"),
IS_TOP("0", "是顶级工作流"),
ISNOT_TOP("1", "不是顶级工作流"),
IS_START("0", "启动"), IS_START("0", "启动"),
NO_START("1", "未启动"), NO_START("1", "未启动"),
; ;
...@@ -22,7 +16,7 @@ public enum FlowPropertyEnum { ...@@ -22,7 +16,7 @@ public enum FlowPropertyEnum {
private String code; private String code;
private String name; private String name;
FlowPropertyEnum(String code, String name){ private FlowPropertyEnum(String code, String name){
this.code = code; this.code = code;
this.name = name; this.name = name;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment