2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
package cn.iocoder.yudao.module.pay.controller.admin.notify.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
import java.time.LocalDateTime;
import java.util.List;
 
@Schema(description = "管理后台 - 回调通知的明细 Response VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class PayNotifyTaskDetailRespVO extends PayNotifyTaskRespVO {
 
    @Schema(description = "回调日志列表")
    private List<Log> logs;
 
    @Schema(description = "管理后台 - 回调日志")
    @Data
    public static class Log {
 
        @Schema(description = "日志编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "8848")
        private Long id;
 
        @Schema(description = "通知状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
        private Byte status;
 
        @Schema(description = "当前通知次数", requiredMode = Schema.RequiredMode.REQUIRED)
        private Byte notifyTimes;
 
        @Schema(description = "HTTP 响应结果", requiredMode = Schema.RequiredMode.REQUIRED)
        private String response;
 
        @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
        private LocalDateTime createTime;
 
    }
 
}