You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
348 B
8 lines
348 B
6 years ago
|
public class TestWS2TDClient {
|
||
|
public String[][] getTD() {
|
||
|
String[][] a = { { "城市", "销售员", "销售额" }, { "江苏", "Anna", "230" }, { "江苏", "Alex", "190" },
|
||
|
|
||
|
{ "江苏", "Jack", "320" }, { "江苏", "Apple", "210" }, { "浙江", "Faye", "150" }, { "浙江", "Sammi", "280" } };
|
||
|
return a;
|
||
|
}
|
||
|
}
|