dashboard
repositories
filestore
activity
search
login
jagzwxm
/
ja_manage
吉安感知网项目-后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(utils): 添加几何数据处理和区域编码转换功能
linwei
2026-06-05
f3104f14213028277c883e19301b820ae724bd70
[jagzwxm/ja_manage.git]
/
drone-common
/
src
/
main
/
java
/
org
/
sxkj
/
common
/
func
/
BiSupplier.java
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.sxkj.common.func;
import java.util.function.Supplier;
@FunctionalInterface
public interface BiSupplier<T, T1> {
T get(T1 t1);
default Supplier<T> toSupplier(T1 t1) {
return () -> get(t1);
}
}