Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorOSS committed Apr 12, 2024
1 parent 77304f9 commit 40c296e
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 3 deletions.
Binary file added 0_bYxABYbP.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions AifadianPay-plugin.wiki
Submodule AifadianPay-plugin.wiki added at 4d0a73
31 changes: 31 additions & 0 deletions sql/AIFADIAN_ORDERS_0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
Navicat MySQL Data Transfer
Source Server : hhhblog
Source Server Version : 80030
Source Host : 175.178.152.24:3306
Source Database : minecraft
Target Server Type : MYSQL
Target Server Version : 80030
File Encoding : 65001
Date: 2024-01-05 17:44:16
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for AIFADIAN_ORDERS_0
-- ----------------------------
DROP TABLE IF EXISTS `AIFADIAN_ORDERS_0`;
CREATE TABLE `AIFADIAN_ORDERS_0` (
`out_trade_no` varchar(40) NOT NULL,
`remark` varchar(100) DEFAULT NULL,
`user_id` varchar(40) DEFAULT NULL,
`plan_title` varchar(40) DEFAULT NULL,
`redeem_id` varchar(40) DEFAULT NULL,
`price` varchar(40) DEFAULT NULL,
`insert_time` bigint DEFAULT NULL,
PRIMARY KEY (`out_trade_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
28 changes: 28 additions & 0 deletions sql/AIFADIAN_SKUDETAIL_0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
Navicat MySQL Data Transfer
Source Server : hhhblog
Source Server Version : 80030
Source Host : 175.178.152.24:3306
Source Database : minecraft
Target Server Type : MYSQL
Target Server Version : 80030
File Encoding : 65001
Date: 2024-01-05 17:44:06
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for AIFADIAN_SKUDETAIL_0
-- ----------------------------
DROP TABLE IF EXISTS `AIFADIAN_SKUDETAIL_0`;
CREATE TABLE `AIFADIAN_SKUDETAIL_0` (
`out_trade_no` varchar(40) DEFAULT NULL,
`sku_id` varchar(40) DEFAULT NULL,
`price` varchar(40) DEFAULT NULL,
`name` varchar(40) DEFAULT NULL,
`count` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ public void execute(boolean isSave) throws JobExecutionException {
@Override
public void success(PackHttpResponse packHttpResponse) {
QueryOrderResponse queryOrderResponse = AfadianApi.afadianApi.toOrders(packHttpResponse);

handlerQueryOrdersResponse.success(queryOrderResponse,isSave);

Orders orders = queryOrderResponse.getOrders();
if(orders!=null&&currentPage<orders.getTotalPage()){
for(int i = currentPage+1;i<=orders.getTotalPage();i++){
Expand All @@ -54,7 +52,6 @@ public void success(PackHttpResponse packHttpResponse) {
handlerQueryOrdersResponse.success(nextQueryOrderResponse,isSave);
}
}

}

@Override
Expand Down

0 comments on commit 40c296e

Please sign in to comment.