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
| package com.ld.igds.protocol.openapi.data;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Desc:
| * @author: andy.jia
| * @update-time: 2023/6/29 15:30
| */
| @Data
| public class PlateReqVo implements Serializable {
|
|
| /**
| * 图像Base64编码值
| **/
| private String image;
|
| /**
| * 摄像头RTSP地址
| **/
| private String rtsp;
|
| /**
| * 搜索条数:默认5
| **/
| private Integer limit = 1;
|
| }
|
|