添加汇付支付
This commit is contained in:
parent
a7eb6e2028
commit
c0cadbe3fe
|
|
@ -138,9 +138,12 @@ public class MerchantChannelStatusController {
|
|||
* @return
|
||||
*/
|
||||
@GetMapping(value = "/manualMerchantIncom")
|
||||
public RespBody manualMerchantIncome(@RequestParam("userId") String userId, @RequestParam("channelId") String channelId,
|
||||
@RequestParam("type")String type, @RequestParam("errMsg")String errMsg,
|
||||
@RequestParam("wxLiteAppId") String wxLiteAppId,@RequestParam("wxPubAppId") String wxPubAppId,
|
||||
public RespBody manualMerchantIncome(@RequestParam("userId") String userId,
|
||||
@RequestParam("channelId") String channelId,
|
||||
@RequestParam("type")String type,
|
||||
@RequestParam("errMsg")String errMsg,
|
||||
@RequestParam("wxLiteAppId") String wxLiteAppId,
|
||||
@RequestParam("wxPubAppId") String wxPubAppId,
|
||||
@RequestParam("wxPubPath") String wxPubPath
|
||||
){
|
||||
if ("1".equals(type)) {
|
||||
|
|
|
|||
|
|
@ -230,17 +230,17 @@ public class MerchantChannelStatusService {
|
|||
TbPlussMerchantHfInfo findMerchantHfInfo = merchantHfInfoMapper.selectByMerchantCode(tbPlussMerchantBaseInfo.getMerchantcode());
|
||||
JSONObject jsonObject = JSON.parseObject(findMerchantHfInfo.getWxInfo());
|
||||
if (jsonObject == null){
|
||||
d1.put("wxLiteAppld","");
|
||||
d1.put("wxPubAppld","");
|
||||
d1.put("wxLiteAppId","");
|
||||
d1.put("wxPubAppId","");
|
||||
d1.put("wxPubPath","");
|
||||
}else {
|
||||
d1.put("wxLiteAppld", jsonObject.get("wxLiteAppld"));
|
||||
d1.put("wxPubAppld", jsonObject.get("wxPubAppld"));
|
||||
d1.put("wxLiteAppId", jsonObject.get("wxLiteAppld"));
|
||||
d1.put("wxPubAppId", jsonObject.get("wxPubAppld"));
|
||||
d1.put("wxPubPath", jsonObject.get("wxPubPath"));
|
||||
}
|
||||
}else {
|
||||
d1.put("wxLiteAppld","");
|
||||
d1.put("wxPubAppld","");
|
||||
d1.put("wxLiteAppId","");
|
||||
d1.put("wxPubAppId","");
|
||||
d1.put("wxPubPath","");
|
||||
}
|
||||
merchantChannelMessage.add(d1);
|
||||
|
|
@ -275,8 +275,8 @@ public class MerchantChannelStatusService {
|
|||
unaudited.put("channel",channel.get(0).getChannel());
|
||||
unaudited.put("valid",account == null? null:account.getChanneltype());
|
||||
unaudited.put("thirdStatus",channel.get(0).getThirdstatus());
|
||||
unaudited.put("wxLiteAppld","");
|
||||
unaudited.put("wxPubAppld","");
|
||||
unaudited.put("wxLiteAppId","");
|
||||
unaudited.put("wxPubAppId","");
|
||||
unaudited.put("wxPubPath","");
|
||||
merchantChannelMessage.add(unaudited);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -585,7 +585,7 @@
|
|||
FROM
|
||||
tb_pluss_user_app
|
||||
WHERE
|
||||
id =(
|
||||
userId =(
|
||||
SELECT
|
||||
parentId
|
||||
FROM
|
||||
|
|
|
|||
Loading…
Reference in New Issue