dashboard
repositories
filestore
activity
search
login
main
/
jczz_manager
基层智治-后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
短信指定楼栋发送
linwe
2024-08-09
8b7258c9427882bb1798f1502eaa35184c6e374e
[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;
}
}