This commit is contained in:
tanghc
2019-07-28 10:55:43 +08:00
parent 33f00bbc62
commit 17de022e3c
50 changed files with 217 additions and 66 deletions

View File

@@ -8,7 +8,7 @@ import java.util.Map;
/**
* 请求form
* @author thc
* @author tanghc
*/
@Getter
@Setter

View File

@@ -2,7 +2,7 @@ package com.gitee.sop.sdk.common;
/**
* 请求方法枚举
* @author thc
* @author tanghc
*/
public enum RequestMethod {

View File

@@ -2,7 +2,7 @@ package com.gitee.sop.sdk.common;
/**
* @deprecated 已废弃使用com.gitee.sop.sdk.common.OpenConfig
* @author thc
* @author tanghc
*/
@Deprecated
public class SdkConfig {

View File

@@ -1,7 +1,7 @@
package com.gitee.sop.sdk.common;
/**
* @author thc
* @author tanghc
*/
public class SopSdkConstants {
public static String DATA_SUFFIX = "_response";

View File

@@ -1,7 +1,7 @@
package com.gitee.sop.sdk.exception;
/**
* @author thc
* @author tanghc
*/
public class SdkException extends RuntimeException {

View File

@@ -32,7 +32,7 @@ import java.util.Map;
*
* @param <T> 对应的Response对象
*
* @author thc
* @author tanghc
*/
public abstract class BaseRequest<T extends BaseResponse> {

View File

@@ -16,7 +16,7 @@ import lombok.Setter;
* },
* "sign": "ERITJKEIJKJHKKKKKKKHJEREEEEEEEEEEE"
* }
* @author thc
* @author tanghc
*/
@Setter
@Getter

View File

@@ -9,7 +9,7 @@ import java.io.InputStream;
/**
* 文件工具类
* @author thc
* @author tanghc
*/
public class FileUtil {

View File

@@ -2,7 +2,7 @@ package com.gitee.sop.sdk.util;
/**
* hex工具类
* @author thc
* @author tanghc
*/
public class HexUtil {
private static final String ZERO = "0";

View File

@@ -4,7 +4,7 @@ import java.security.MessageDigest;
/**
* MD5工具类
* @author thc
* @author tanghc
*/
public class MD5Util {