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;//已处理 }