|
|
@@ -22,13 +22,23 @@ import java.util.Date;
|
|
|
@NoArgsConstructor
|
|
|
@AllArgsConstructor
|
|
|
public class RequestInfo extends SuperMain {
|
|
|
- @Schema(description = "请求参数")
|
|
|
- private Object param;
|
|
|
+
|
|
|
+ @Schema(description = "关联的请求id")
|
|
|
+ private String requestId;
|
|
|
+
|
|
|
+ @Schema(description = "请求用户userId")
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ @Schema(description = "请求用户名称")
|
|
|
+ private String userName;
|
|
|
|
|
|
@Schema(description = "api信息")
|
|
|
private Object apiParam;
|
|
|
|
|
|
- @Schema(description = "校园参数")
|
|
|
+ @Schema(description = "请求参数")
|
|
|
+ private Object param;
|
|
|
+
|
|
|
+ @Schema(description = "返回参数")
|
|
|
private Object response;
|
|
|
|
|
|
@Schema(description = "时间")
|