mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 10:18:42 +08:00 
			
		
		
		
	BPM:code review 快搭的实现
This commit is contained in:
		| @@ -76,5 +76,7 @@ public interface ErrorCodeConstants { | ||||
|     ErrorCode PROCESS_EXPRESSION_NOT_EXISTS = new ErrorCode(1_009_014_000, "流程表达式不存在"); | ||||
|  | ||||
|     // ========== BPM 仿钉钉流程设计器 1-009-015-000 ========== | ||||
|     // TODO @芋艿:这个错误码,需要关注下 | ||||
|     ErrorCode CONVERT_TO_SIMPLE_MODEL_NOT_SUPPORT = new ErrorCode(1_009_015_000, "该流程模型不支持仿钉钉设计流程"); | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -17,6 +17,7 @@ import java.util.Objects; | ||||
| @AllArgsConstructor | ||||
| public enum BpmSimpleModelNodeType implements IntArrayValuable { | ||||
|  | ||||
|     // TODO @jaosn:-1、0、1、4、-2 是前端已经定义好的么?感觉未来可以考虑搞成和 BPMN 尽量一致的单词哈;类似 usertask 用户审批; | ||||
|     START_NODE(-1, "开始节点"), | ||||
|     START_USER_NODE(0, "发起人结点"), | ||||
|     APPROVE_USER_NODE (1, "审批人节点"), | ||||
| @@ -41,4 +42,5 @@ public enum BpmSimpleModelNodeType implements IntArrayValuable { | ||||
|     public int[] array() { | ||||
|         return ARRAYS; | ||||
|     } | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV