2025-04-13 20:33:15 +08:00
|
|
|
package cn.smartjavaai.common.entity;
|
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
import lombok.Data;
|
|
|
|
|
|
2025-04-13 20:33:15 +08:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 检测结果
|
|
|
|
|
* @author dwj
|
|
|
|
|
* @date 2025/4/12
|
|
|
|
|
*/
|
2025-05-09 20:10:04 +08:00
|
|
|
@Data
|
2025-04-13 20:33:15 +08:00
|
|
|
public class DetectionResponse {
|
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
private List<DetectionInfo> detectionInfoList;
|
2025-04-13 20:33:15 +08:00
|
|
|
|
2025-06-09 12:12:10 +08:00
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
public DetectionResponse() {
|
2025-04-13 20:33:15 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
public DetectionResponse(List<DetectionInfo> detectionInfoList) {
|
|
|
|
|
this.detectionInfoList = detectionInfoList;
|
2025-04-13 20:33:15 +08:00
|
|
|
}
|
|
|
|
|
}
|