dashboard
repositories
filestore
activity
search
login
main
/
jczz_manager
基层智治-后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
拿不到地址总表数据,不设置网格信息
linwei
2024-01-31
b3b566ebdfed4005aaa513da3d5d2fd3924903cc
[jczz_manager.git]
/
src
/
main
/
java
/
org
/
springblade
/
modules
/
words
/
internals
/
TwoTuple.java
1
2
3
4
5
6
7
8
9
10
11
package org.springblade.modules.words.internals;
public class TwoTuple<A, B> {
public A Item1;
public B Item2;
public TwoTuple(A a, B b) {
this.Item1 = a;
this.Item2 = b;
}
}