| | |
| | | package com.ruoyi.media.domain; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @Version: 1.0 |
| | | **/ |
| | | @Data |
| | | @JsonInclude(value = JsonInclude.Include.NON_NULL) |
| | | public class Items { |
| | | private String name; |
| | | private String confname; |
| | | private String confName; |
| | | private Conf conf; |
| | | private Source source; |
| | | private boolean sourceready; |
| | | private List<Readers> readers; |
| | | private boolean sourceReady; |
| | | private List<String> tracks; |
| | | private String mode; |
| | | |
| | | private String id; |
| | | private Date created; |
| | | private String remoteAddr; |
| | | private String state; |
| | | private long bytesReceived; |
| | | private long bytesSent; |
| | | |
| | | } |