old mode 100644
new mode 100755
|  |  |  | 
|---|
|  |  |  | @Schema(description = "多端口RTP收流端口范围") | 
|---|
|  |  |  | private String rtpPortRange; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "RTP发流端口范围") | 
|---|
|  |  |  | private String sendRtpPortRange; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "assist服务端口") | 
|---|
|  |  |  | private int recordAssistPort; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @Schema(description = "是否是默认ZLM") | 
|---|
|  |  |  | private boolean defaultServer; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "当前使用到的端口") | 
|---|
|  |  |  | private int currentPort; | 
|---|
|  |  |  | @Schema(description = "录像存储时长") | 
|---|
|  |  |  | private int recordDay; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "录像存储路径") | 
|---|
|  |  |  | private String recordPath; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public MediaServerItem() { | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | this.updateTime = updateTime; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int getCurrentPort() { | 
|---|
|  |  |  | return currentPort; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setCurrentPort(int currentPort) { | 
|---|
|  |  |  | this.currentPort = currentPort; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public boolean isStatus() { | 
|---|
|  |  |  | return status; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | public void setHookAliveInterval(Float hookAliveInterval) { | 
|---|
|  |  |  | this.hookAliveInterval = hookAliveInterval; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getSendRtpPortRange() { | 
|---|
|  |  |  | return sendRtpPortRange; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setSendRtpPortRange(String sendRtpPortRange) { | 
|---|
|  |  |  | this.sendRtpPortRange = sendRtpPortRange; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int getRecordDay() { | 
|---|
|  |  |  | return recordDay; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setRecordDay(int recordDay) { | 
|---|
|  |  |  | this.recordDay = recordDay; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getRecordPath() { | 
|---|
|  |  |  | return recordPath; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setRecordPath(String recordPath) { | 
|---|
|  |  |  | this.recordPath = recordPath; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|