dashboard
repositories
filestore
activity
search
login
main
/
jfptht-public
洪城义警-正式版后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1、资讯模糊匹配修改
zengh
2022-05-26
4c19ddd36bdfb43b5ef4e8df3c9a98cd4d356d6c
[jfptht-public.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;
}
}