czt
2024-07-13 1c1472f51d68382f913e413aa827fd0b028ab589
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
32
33
34
35
36
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 {
 
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 图像Base64编码值
     **/
    private String image;
 
    /**
     * 摄像头RTSP地址
     **/
    private String rtsp;
 
    /**
     * 搜索条数:默认5
     **/
    private Integer limit = 1;
 
}