From 80ed5f951a7056151d7736e959d269df15e9a7c6 Mon Sep 17 00:00:00 2001 From: shijie <648688341@qq.com> Date: Sun, 22 Nov 2020 15:53:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8A=B6=E6=80=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../daqing/framework/model/StatusCode.java | 34 +++++++++++++++---- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/dq-framework-common/src/main/java/com/daqing/framework/model/StatusCode.java b/dq-framework-common/src/main/java/com/daqing/framework/model/StatusCode.java index 8a7924df..bd4f97d5 100644 --- a/dq-framework-common/src/main/java/com/daqing/framework/model/StatusCode.java +++ b/dq-framework-common/src/main/java/com/daqing/framework/model/StatusCode.java @@ -8,19 +8,39 @@ package com.daqing.framework.model; */ public class StatusCode { - public static final Integer TO_BE_ASSIGNED = 0;//待指派 + /** + * 审批流程状态 + */ + public static final Integer SP_TO_BE_ASSIGNED = 0;//待指派 - public static final Integer IN_REVIEW = 1;//审核中 + public static final Integer SP_IN_REVIEW = 1;//审核中 - public static final Integer REVIEWED = 2;//已审核 + public static final Integer SP_REVIEWED = 2;//已审核 - public static final Integer REFUSE = 3;//拒绝 + public static final Integer SP_REFUSE = 3;//拒绝 - public static final Integer REJECT = 4;//驳回 + public static final Integer SP_REJECT = 4;//驳回 - public static final Integer RESCINDED = 5;//已撤销 + public static final Integer SP_RESCINDED = 5;//已撤销 - public static final Integer DRAFT = 6;//草稿 + public static final Integer SP_DRAFT = 6;//草稿 + /** + * 业务流程状态 + */ + public static final Integer YW_IN_PROGRESS = 1;//进行中 + + public static final Integer YW_COMPLETED = 2;//已完成 + + public static final Integer YW_REJECTED = 3;//已否决 + + /** + * 操作流程状态 + */ + public static final Integer CZ_LAUNCH = 0;//已发起 + + public static final Integer CZ_ON_HAND = 1;//待处理 + + public static final Integer CZ_PROCESSED = 2;//已处理 }