|
|
@ -1,8 +1,13 @@ |
|
|
|
package com.hai.openApi.config; |
|
|
|
package com.hai.openApi.config; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.hai.common.utils.HttpsUtils; |
|
|
|
import com.hai.common.utils.HttpsUtils; |
|
|
|
import com.hai.common.utils.RedisUtil; |
|
|
|
import com.hai.common.utils.RedisUtil; |
|
|
|
|
|
|
|
import com.hai.config.CommonSysConst; |
|
|
|
|
|
|
|
import com.hai.config.HuiLianTongUnionCardConfig; |
|
|
|
|
|
|
|
import org.slf4j.Logger; |
|
|
|
|
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import javax.annotation.Resource; |
|
|
@ -15,6 +20,8 @@ public class BlxConfig { |
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private RedisUtil redisUtil; |
|
|
|
private RedisUtil redisUtil; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static Logger log = LoggerFactory.getLogger(BlxConfig.class); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @Author Sum1Dream |
|
|
|
* @Author Sum1Dream |
|
|
|
* @Name generateJw |
|
|
|
* @Name generateJw |
|
|
@ -24,18 +31,20 @@ public class BlxConfig { |
|
|
|
* @Return java.lang.String |
|
|
|
* @Return java.lang.String |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public String generateJw() { |
|
|
|
public String generateJw() { |
|
|
|
|
|
|
|
|
|
|
|
Object token = redisUtil.get("BlxToken"); |
|
|
|
Object token = redisUtil.get("BlxToken"); |
|
|
|
|
|
|
|
|
|
|
|
if (token == null) { |
|
|
|
if (token == null) { |
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
map.put("organizeCode" , "dhy"); |
|
|
|
map.put("organizeCode" , "dhy"); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取TOKEN-START ============="); |
|
|
|
JSONObject object = HttpsUtils.doGet("https://vertical-formats-gateway.blx.bodata.cn:18443/admin/api/generateJwt" , map); |
|
|
|
JSONObject object = HttpsUtils.doGet("https://vertical-formats-gateway.blx.bodata.cn:18443/admin/api/generateJwt" , map); |
|
|
|
|
|
|
|
log.info("请求参数: " + map); |
|
|
|
|
|
|
|
log.info("响应参数: " + object); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取TOKEN-END =============="); |
|
|
|
return object.getString("data"); |
|
|
|
return object.getString("data"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return token.toString(); |
|
|
|
return token.toString(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -48,7 +57,7 @@ public class BlxConfig { |
|
|
|
* @Return com.alibaba.fastjson.JSONObject |
|
|
|
* @Return com.alibaba.fastjson.JSONObject |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public JSONObject queryCouponPage() { |
|
|
|
public JSONObject queryCouponPage() { |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取比邻星停车券列表-START ============="); |
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
map.put("rows" , "20"); |
|
|
|
map.put("rows" , "20"); |
|
|
|
map.put("currPage" , "1"); |
|
|
|
map.put("currPage" , "1"); |
|
|
@ -56,10 +65,14 @@ public class BlxConfig { |
|
|
|
Map<String , Object> header = new HashMap<>(); |
|
|
|
Map<String , Object> header = new HashMap<>(); |
|
|
|
header.put("token" , generateJw()); |
|
|
|
header.put("token" , generateJw()); |
|
|
|
|
|
|
|
|
|
|
|
return HttpsUtils.doPost("https://vertical-formats-gateway.blx.bodata.cn:18443/admin/api/qureyCouponPage" , map , header); |
|
|
|
JSONObject object = HttpsUtils.doPost(CommonSysConst.getSysConfig().getBlxPostUrl() + "/admin/api/qureyCouponPage" , map , header); |
|
|
|
|
|
|
|
log.info("头部参数: " + header); |
|
|
|
|
|
|
|
log.info("请求参数: " + map); |
|
|
|
|
|
|
|
log.info("响应参数: " + object); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取比邻星停车券列表-END =============="); |
|
|
|
|
|
|
|
return object; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @Author Sum1Dream |
|
|
|
* @Author Sum1Dream |
|
|
|
* @Name sendCoupon |
|
|
|
* @Name sendCoupon |
|
|
@ -69,6 +82,7 @@ public class BlxConfig { |
|
|
|
* @Return com.alibaba.fastjson.JSONObject |
|
|
|
* @Return com.alibaba.fastjson.JSONObject |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public JSONObject sendCoupon(JSONObject object) { |
|
|
|
public JSONObject sendCoupon(JSONObject object) { |
|
|
|
|
|
|
|
|
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
map.put("couponCode" , object.getString("couponCode")); |
|
|
|
map.put("couponCode" , object.getString("couponCode")); |
|
|
|
map.put("receiverPhone" , object.getString("receiverPhone")); |
|
|
|
map.put("receiverPhone" , object.getString("receiverPhone")); |
|
|
@ -76,8 +90,46 @@ public class BlxConfig { |
|
|
|
|
|
|
|
|
|
|
|
Map<String , Object> header = new HashMap<>(); |
|
|
|
Map<String , Object> header = new HashMap<>(); |
|
|
|
header.put("token" , generateJw()); |
|
|
|
header.put("token" , generateJw()); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-发放停车券-START ============="); |
|
|
|
|
|
|
|
JSONObject data = HttpsUtils.doPost(CommonSysConst.getSysConfig().getBlxPostUrl() + "/admin/api/sendCupon" , map , header); |
|
|
|
|
|
|
|
log.info("头部参数: " + header); |
|
|
|
|
|
|
|
log.info("请求参数: " + map); |
|
|
|
|
|
|
|
log.info("响应参数: " + data); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-发放停车券-END ============="); |
|
|
|
|
|
|
|
return data; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @Author Sum1Dream |
|
|
|
|
|
|
|
* @Name queryCouponPage |
|
|
|
|
|
|
|
* @Description // 获取比邻星停车券列表
|
|
|
|
|
|
|
|
* @Date 10:57 2023/7/11 |
|
|
|
|
|
|
|
* @Param [] |
|
|
|
|
|
|
|
* @Return com.alibaba.fastjson.JSONObject |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public JSONObject getUserCouponPage(JSONObject object) { |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取用户未使用卡券列表-START ============="); |
|
|
|
|
|
|
|
Map<String , Object > map = new HashMap<>(); |
|
|
|
|
|
|
|
map.put("rows" , "2000"); |
|
|
|
|
|
|
|
map.put("currPage" , "1"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jsonObject.put("userMobile" , object.getString("userMobile")); |
|
|
|
|
|
|
|
jsonObject.put("couponStatus" , 1); |
|
|
|
|
|
|
|
map.put("data" , jsonObject); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<String , Object> header = new HashMap<>(); |
|
|
|
|
|
|
|
header.put("token" , generateJw()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject data = HttpsUtils.doPost(CommonSysConst.getSysConfig().getBlxPostUrl() + "/admin/api/getUserCouponPage" , map , header); |
|
|
|
|
|
|
|
log.info("头部参数: " + header); |
|
|
|
|
|
|
|
log.info("请求参数: " + map); |
|
|
|
|
|
|
|
log.info("响应参数: " + data); |
|
|
|
|
|
|
|
log.info("============ 比邻星停车券业务-获取比邻星停车券列表-END =============="); |
|
|
|
|
|
|
|
return data; |
|
|
|
|
|
|
|
|
|
|
|
return HttpsUtils.doPost("https://vertical-formats-gateway.blx.bodata.cn:18443/admin/api/qureyCouponPage" , map , header); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|