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
package com.ruoyi.quality.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 自动判断响应DTO
 */
@Data
@Schema(name = "AutoJudgeResponse", description = "自动判断响应")
public class AutoJudgeResponse {
 
    @Schema(description = "是否合格:true-合格,false-不合格,null-无法判断")
    private Boolean isQualified;
 
    @Schema(description = "判断说明")
    private String message;
 
    public AutoJudgeResponse() {
    }
 
    public AutoJudgeResponse(Boolean isQualified, String message) {
        this.isQualified = isQualified;
        this.message = message;
    }
}