提交枚举类
parent
5335db573e
commit
4d18d7f31e
@ -0,0 +1,24 @@
|
||||
package com.supervision.knowsub.enums;
|
||||
|
||||
public enum FlowTypeEnum {
|
||||
|
||||
SUBMIT(1, "知识报送"),
|
||||
RECALL(2, "知识撤回"),
|
||||
DELETE(3, "知识删除");
|
||||
|
||||
private Integer flowType;
|
||||
|
||||
private String desc;
|
||||
|
||||
FlowTypeEnum(Integer flowType, String desc) {
|
||||
this.flowType = flowType;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public Integer getFlowType() {
|
||||
return flowType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue