dashboard
repositories
filestore
activity
search
login
main
/
jczz_manager
基层智治-后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
查询过滤优化
lin
2024-03-22
774c8b2ee14eef5fd10bbd46d85a180e7b19ab21
[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;
}
}