xiangpei
2025-01-17 e870ae252f020b745bb6eb1b0f6f74ff29fa79bc
common/src/main/java/com/ycl/common/enums/business/ProcessLogEventTypeEnum.java
File was renamed from common/src/main/java/com/ycl/common/enums/business/FlowLogEventTypeEnum.java
@@ -11,7 +11,7 @@
 * @date:2024/11/29 11:13
 */
@Getter
public enum FlowLogEventTypeEnum {
public enum ProcessLogEventTypeEnum {
    DELEGATE("DELEGATE", "转办"),
    FINISHED("FINISHED", "完成"),
@@ -26,7 +26,7 @@
    private final String desc;
    FlowLogEventTypeEnum(String value, String desc) {
    ProcessLogEventTypeEnum(String value, String desc) {
        this.value = value;
        this.desc = desc;
    }