Files
SmartJavaAI/smartjavaai-common/src/main/java/cn/smartjavaai/common/entity/DetectionResponse.java

22 lines
429 B
Java
Raw Normal View History

2025-04-13 20:33:15 +08:00
package cn.smartjavaai.common.entity;
import java.util.List;
/**
* 检测结果
* @author dwj
* @date 2025/4/12
*/
public class DetectionResponse {
private List<DetectionRectangle> rectangleList;
public List<DetectionRectangle> getRectangleList() {
return rectangleList;
}
public void setRectangleList(List<DetectionRectangle> rectangleList) {
this.rectangleList = rectangleList;
}
}