完成一键登录和支付功能
This commit was merged in pull request #43.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import com.huifu.dg.lightning.models.payment.TradePaymentCreateRequest;
|
||||
|
||||
public class TestCreateRequest {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("=== TradePaymentCreateRequest 方法列表 ===");
|
||||
java.lang.reflect.Method[] methods = TradePaymentCreateRequest.class.getMethods();
|
||||
for (java.lang.reflect.Method m : methods) {
|
||||
if (m.getName().startsWith("set") || m.getName().startsWith("get")) {
|
||||
System.out.println(" " + m.getName());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user