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
| package com.ruoyi.media.domain;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * @ClassName RtspSession
| * @Description:
| * @Author 刘苏义
| * @Date 2023/7/14 21:19
| * @Version 1.0
| */
| @Data
| public class RtspSession {
| private String name;
| private String id;
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
| private Date created;
| private String remoteAddr;
| private String state;
| private long bytesReceived;
| private long bytesSent;
| }
|
|