定义基础接口 #1

Merged
jiangdingxuan merged 3 commits from develop into main 2024-01-08 10:46:40 +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);
}
}