package com.iailab.framework.common.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 业务流程ID
|
*
|
* @author PanZhibao
|
* @Description
|
* @createTime 2022年12月20日 16:17:00
|
*/
|
@Target(ElementType.FIELD)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface BpmProcess {
|
|
/**
|
* 业务ID
|
*
|
* @return
|
*/
|
String businessKey();
|
}
|