Commit 033e0974 by guominglei

变更枚举类型

parent e65d7194
...@@ -7,12 +7,10 @@ package com.byit.enums; ...@@ -7,12 +7,10 @@ package com.byit.enums;
*/ */
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", "是顶级工作流"), IS_START("0", "启动"),
ISNOT_TOP("1", "不是顶级工作流") NO_START("1", "未启动"),
; ;
private String code; private String code;
......
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