整合多次更改 #1

Merged
zhouxy108 merged 22 commits from dev into main 2023-03-29 18:54:04 +08:00
47 changed files with 221 additions and 144 deletions
Showing only changes of commit 7a44c43402 - Show all commits

View File

@@ -1,6 +1,7 @@
package xyz.zhouxy.plusone.domain;
import cn.hutool.core.lang.UUID;
import java.util.UUID;
import lombok.Getter;
/**
@@ -20,7 +21,7 @@ public abstract class DomainEvent {
private long happenedAt;
protected DomainEvent() {
this.identifier = UUID.randomUUID().toString(true);
this.identifier = UUID.randomUUID().toString();
this.happenedAt = System.currentTimeMillis();
}
}