1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ard.work.device.camera.domain;
|
| import com.ard.work.api.domian.Point;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @Description: 几何实体
| * @ClassName: RequestParam
| * @Author: 刘苏义
| * @Date: 2023年08月17日13:16:25
| * @Version: 1.0
| **/
| @Data
| public class GeoDTO {
| //圆形
| Integer radius;
| //中心点
| Point centerPoint;
| //多边形
| List<Point> polygonPoints;
| }
|
|