Commit e65d7194 by guominglei

变更类名

parent 40b08268
package com.byit.enums;
/**
* @description: 工作流属性的枚举类
* @author: gml
* @create: 2019-12-26 15:17
*/
public enum FlowProperTyEnum {
HAVE_DEPEND("0", "有下游依赖"),
NO_HAVE_DEPEND("1", "没有下游依赖"),
IS_INNER("0", "是内嵌工作流"),
ISNOT_INNER("1", "不是内嵌工作流"),
IS_TOP("0", "是顶级工作流"),
ISNOT_TOP("1", "不是顶级工作流")
;
private String code;
private String name;
private FlowProperTyEnum(String code, String name){
this.code = code;
this.name = name;
}
public String getCode(){
return this.code;
}
public String getName(){
return this.name;
}
}
...@@ -3,10 +3,8 @@ package com.byit.enums; ...@@ -3,10 +3,8 @@ 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", "有下游依赖"), HAVE_DEPEND("0", "有下游依赖"),
...@@ -14,15 +12,13 @@ public enum FlowPropertyEnum { ...@@ -14,15 +12,13 @@ public enum FlowPropertyEnum {
IS_INNER("0", "是内嵌工作流"), IS_INNER("0", "是内嵌工作流"),
ISNOT_INNER("1", "不是内嵌工作流"), ISNOT_INNER("1", "不是内嵌工作流"),
IS_TOP("0", "是顶级工作流"), IS_TOP("0", "是顶级工作流"),
ISNOT_TOP("1", "不是顶级工作流"), ISNOT_TOP("1", "不是顶级工作流")
IS_START("0", "启动"),
NO_START("1", "未启动"),
; ;
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