mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
支付宝参数设置
This commit is contained in:
@@ -127,6 +127,11 @@ public class Constants {
|
||||
|
||||
public static final String ZERO_THREE = "03";
|
||||
|
||||
/**
|
||||
* RSA2签名算法
|
||||
*/
|
||||
public static final String RSA2 = "RSA2";
|
||||
|
||||
/**
|
||||
* UTF-8 字符集
|
||||
*/
|
||||
@@ -137,15 +142,24 @@ public class Constants {
|
||||
*/
|
||||
public static final String GBK = "GBK";
|
||||
|
||||
/**
|
||||
* URL分隔符
|
||||
*/
|
||||
public static final String URL_DELIMITER = "://";
|
||||
|
||||
public static final String HTTP = "http";
|
||||
|
||||
public static final String HTTPS = "https";
|
||||
|
||||
/**
|
||||
* http请求
|
||||
*/
|
||||
public static final String HTTP = "http://";
|
||||
public static final String HTTP_PREFIX = HTTP + URL_DELIMITER;
|
||||
|
||||
/**
|
||||
* https请求
|
||||
*/
|
||||
public static final String HTTPS = "https://";
|
||||
public static final String HTTPS_PREFIX = HTTPS + URL_DELIMITER;
|
||||
|
||||
/**
|
||||
* 通用成功标识
|
||||
|
||||
Reference in New Issue
Block a user