dongyukun
8 天以前 ad69b5895a0348dd827a32513293ce4bee920519
提交 | 用户 | 时间
a6de49 1 package com.iailab.framework.common.annotation;
H 2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9  * 业务流程状态
10  *
11  * @author PanZhibao
12  * @Description
13  * @createTime 2022年12月20日 16:14:00
14  */
15 @Target(ElementType.FIELD)
16 @Retention(RetentionPolicy.RUNTIME)
17 public @interface BpmStatus {
18
19     /**
20      * 业务ID
21      *
22      * @return
23      */
24     String businessKey();
25 }