【修改】 名称替换

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-21 17:28:26 +08:00
parent 3bd8a424ec
commit b5f18ba897
1212 changed files with 1262 additions and 1270 deletions

View File

@@ -6,7 +6,7 @@ import jakarta.validation.Valid;
/**
* 流程实例 Api 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface BpmProcessInstanceApi {

View File

@@ -9,7 +9,7 @@ import java.util.Map;
/**
* 流程实例的创建 Request DTO
*
* @author 芋道源码
* @author 朋辰
*/
@Data
public class BpmProcessInstanceCreateReqDTO {

View File

@@ -3,7 +3,7 @@ package pc.exam.pp.module.bpm.enums;
/**
* BPM 字典类型的枚举类
*
* @author 芋道源码
* @author 朋辰
*/
public interface DictTypeConstants {

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* BPM 模型的表单类型的枚举
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* BPM 模型的类型的枚举
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* BPM 流程监听器的类型
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* BPM 流程监听器的值类型
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* 用户任务的审批类型枚举
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* BPM 用户任务的审批人为空时,处理类型枚举
*
* @author 芋道源码
* @author 朋辰
*/
@RequiredArgsConstructor
@Getter

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* BPM 用户任务的审批人与发起人相同时,处理类型枚举
*
* @author 芋道源码
* @author 朋辰
*/
@RequiredArgsConstructor
@Getter

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* Bpm 消息的枚举
*
* @author 芋道源码
* @author 朋辰
*/
@AllArgsConstructor
@Getter

View File

@@ -10,7 +10,7 @@ import java.util.Arrays;
/**
* 流程实例 ProcessInstance 的状态
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -7,7 +7,7 @@ import lombok.Getter;
/**
* 流程实例/任务的的处理原因枚举
*
* @author 芋道源码
* @author 朋辰
*/
@Getter
@AllArgsConstructor

View File

@@ -7,7 +7,7 @@ import org.springframework.context.ApplicationEvent;
/**
* 流程实例的状态(结果)发生变化的 Event
*
* @author 芋道源码
* @author 朋辰
*/
@SuppressWarnings("ALL")
@Data

View File

@@ -6,7 +6,7 @@ import org.springframework.context.ApplicationListener;
/**
* {@link BpmProcessInstanceStatusEvent} 的监听器
*
* @author 芋道源码
* @author 朋辰
*/
public abstract class BpmProcessInstanceStatusEventListener
implements ApplicationListener<BpmProcessInstanceStatusEvent> {