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 id;
|
private String path;
|
private Date created;
|
private String remoteAddr;
|
private String state;
|
private String transport;
|
private long bytesReceived;
|
private long bytesSent;
|
private String upStream;
|
private String downStream;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date beginTime;
|
}
|