This commit is contained in:
六如
2024-10-04 21:48:38 +08:00
parent 00da3cc0a9
commit c08fec74c9
987 changed files with 24735 additions and 22137 deletions

View File

@@ -8,7 +8,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author tanghc
* @author 六如
*/
@Inherited
@Target(ElementType.METHOD)

View File

@@ -20,6 +20,8 @@ public class OpenContext {
private static final String CLIENT_IP = "client.ip";
private static final String TRACE_ID = "client.trace_id";
/**
* 获取appId
*/

View File

@@ -1,4 +1,4 @@
package com.gitee.sop.support.request;
package com.gitee.sop.support.dto;
import java.io.ByteArrayInputStream;
import java.io.InputStream;

View File

@@ -0,0 +1,42 @@
package com.gitee.sop.support.dto;
import lombok.Data;
import java.io.Serializable;
import java.util.Map;
/**
* 回调信息
*
* @author 六如
*/
@Data
public class NotifyInfo implements Serializable {
private static final long serialVersionUID = -2492336644456313771L;
/**
* 链路id
*/
private String traceId;
/**
* 回调接口
*/
private String url;
/**
* 跟在url后面的参数
*/
private Map<String, Object> query;
/**
* 请求头
*/
private Map<String, Object> header;
/**
* 请求体
*/
private Map<String, Object> body;
}

View File

@@ -1,8 +1,13 @@
package com.gitee.sop.support.service;
/**
*
* @author 六如
*/
public interface IsvService {
/**
* 刷新isv
* @param appId
*/
void refresh(String appId);
}

View File

@@ -1 +1 @@
com.gitee.sop.support.request.CommonFileData
com.gitee.sop.support.dto.CommonFileData