实现 bpm 待办任务的后端接口

This commit is contained in:
YunaiV
2022-01-08 16:19:41 +08:00
parent 1ab15dd1f9
commit b083795ad6
19 changed files with 313 additions and 174 deletions

View File

@ -35,4 +35,8 @@ public final class PageResult<T> implements Serializable {
return new PageResult<>(0L);
}
public static <T> PageResult<T> empty(Long total) {
return new PageResult<>(total);
}
}