Pull Request from Upstream #1

Merged
jiangdingxuan merged 5 commits from develop into main 2024-01-08 13:34:17 +08:00
Showing only changes of commit cddb02d8cd - Show all commits

View File

@ -0,0 +1,8 @@
package net.rzdata.demo.domain;
public record Id(String id) {
public static Id of(String id) {
return new Id(id);
}
}