| | |
| | | package com.taxi591.bankapi; |
| | | |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import lombok.Data; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | |
| | | import java.net.URLEncoder; |
| | | |
| | | import static com.taxi591.bankapi.BankProperties.PREFIX; |
| | | |
| | |
| | | public static final String PREFIX = "com.taxi591.bank"; |
| | | |
| | | public static final String ENBALE_PREFIX = PREFIX+".enable"; |
| | | |
| | | public static final String H5_BANK_URL="https://enjoy.abchina.com/jf-web/epayItem"; |
| | | |
| | | private Boolean enable = true; |
| | | |
| | |
| | | */ |
| | | private String cerPath; |
| | | |
| | | public static void main(String[] args) { |
| | | String url = "https://enjoy.abchina.com/jf-web/epayItem?code=JF-EPAY2025030510983&userInput="; |
| | | JSONObject param = new JSONObject(); |
| | | param.put("input1","25041612464700100000000000096254"); |
| | | url+=URLEncoder.encode(param.toJSONString()); |
| | | url+="&showBill=0"; |
| | | System.out.println(url); |
| | | |
| | | } |
| | | } |