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
| package com.dji.sample.manage.model.dto;
|
| import lombok.Data;
|
| /**
| * @author sean.zhou
| * @version 0.1
| * @date 2021/11/23
| */
| @Data
| public class LiveUrlGB28181DTO {
|
| private String serverIP;
|
| private Integer serverPort;
|
| private String serverID;
|
| private String agentID;
|
| private String agentPassword;
|
| private Integer localPort;
|
| private String channel;
|
| }
|
|